1) Program to convert the given temperature from Fahrenheit to Celsius
and vice versa depending upon user’s
Choice
2) Write a Python program to construct the following pattern, using a
nested loop
3) Program to calculate total marks, percentage and grade of a student.
Marks obtained in each of the five subjects
are to be input by user. Assign grades according to the following criteria:
Grade A: Percentage >=80 Grade B:
Percentage >=70 and 80 Grade C: Percentage >=60 and =40 and < 40
5) Write a Python script that prints prime numbers less than 20.
6) Program to find factorial of the given number using recursive function.
7)Write a Python program to count the number of even and odd numbers
from array of N numbers.
8) Write a Python class to reverse a string word by word.
11) Read a file content and copy only the contents at odd lines into a new
file.
12)Create a Turtle graphics window with specific size.
13) Write a Python program for Towers of Hanoi using recursion