Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
16 views

Python Programming Worksheet

The document is a Python programming worksheet that outlines ten different programming tasks. These tasks include basic arithmetic operations, checking even or odd numbers, finding the largest and smallest of three numbers, calculating the area of a circle, temperature conversions, calculating simple and compound interest, and checking for palindromes. Each task requires writing a specific Python program to accomplish the goal.

Uploaded by

pahadivij
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views

Python Programming Worksheet

The document is a Python programming worksheet that outlines ten different programming tasks. These tasks include basic arithmetic operations, checking even or odd numbers, finding the largest and smallest of three numbers, calculating the area of a circle, temperature conversions, calculating simple and compound interest, and checking for palindromes. Each task requires writing a specific Python program to accomplish the goal.

Uploaded by

pahadivij
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

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.

You might also like