Python Programming Worksheet
1. Basic Arithmetic
Write a Python program to:
Add two numbers.
Subtract two numbers.
Multiply two numbers.
Divide two numbers.
2. Even or Odd
Write a Python program to check if a number is even or odd.
3. Largest Number
Write a Python program to find the largest of three numbers.
4. Smallest Number
Write a Python program to find the smallest of three numbers.
5. Area of a Circle
Write a Python program to calculate the area of a circle given its radius.
6. Celsius to Fahrenheit
Write a Python program to convert a temperature from Celsius to Fahrenheit.
7. Fahrenheit to Celsius
Write a Python program to convert a temperature from Fahrenheit to Celsius.
8. Simple Interest
Write a Python program to calculate simple interest given the principal amount, rate, and time.
9. Compound Interest
Write a Python program to calculate compound interest given the principal amount, rate, and time.
10. Palindrome Check
Write a Python program to check if a string is a palindrome.