WORKSHEET ON PYTHON PROGRAMS
List of Programs:
[Link] QUESTIONS
1. Write a Python Program to print the sum, difference, product and division of two
numbers.
2. Write a Python Program to input 3 numbers and print their average.
3. Write a Python Program to input your name and year of birth and print the name and
age.
4. Write a Python Program to input two numbers and swap their values.
5. Write a Python Program to input the length and breadth of a rectangle and print the area
and perimeter.
6. Write a Python Program to input the length of a wire in centimetre and print the
equivalent in meter and millimetre.
7. Write a Python Program to input the temperature in Fahrenheit and print it in equivalent
Centigrade.
8. Write a Python Program to input the principal, rate and time and print the Simple and
Compound Interest.
9. Write a Python Program to input 3 sides of a Scalene triangle and print the area .
Area=√S×(S-A)×(S-B)×(S-C)
10. Write a Python Program to input the total memory and used memory in GB and print the
free memory space in MB.
11. On Purchasing certain items a discount of 18.5% is offered on purchase amount. Write a
Python program to input the quantity & unit price and print the discounted price (price
after discount).
-------------------------------