CONTENTS
S.NO. PRACTICAL DATE SIGNATURE
1. Write a simple python program to 22.5.2023
assign same value to multiple
variables.
2. Write a simple python program to 22.5.2023
assign multiple values to multiple
variables.
3. Write a simple python program to 29.5.2023
get the input from the user and
use int () or float () function with
the read value to change the type.
4. Write a python program to print 29.5.2023
the area of a circle of radius 3.75
meters
5. Write a simple python program to 5.6.2023
obtain length and breadth of a
rectangle and calculate the area.
6. Write a simple python program to 12.6.2023
obtain temperatures of 07 days
and then display average
temperature of the week.
7. Write a simple python program to 10.7.2023
find no. is even or odd.
8. Write a program to compute 10.7.2023
simple interest.
9. WAP to find which no. is greater 24.7.2023
no. in 3 numbers.
10. Write a program to create a 14.8.2023
simple calculator performing only
six basic operations (+, - ,
* , / , // , % )
11. WAP to input marks in 3 subjects, 14.8.2023
compute average and then
calculate grades as per following
guidelines:
GRADE REMARK MARKS
S
A Level 5 80% and
above
B Level 4 70%-79%
C Level 3 60%-69%
D Level 2 50%-59%
E Level 1 40%-49%
R Remedial 30% and
below
12. Write a program to print even 28.8.2023
numbers in a given Sequence (1-
50) using for loop.
13. WAP to display sum of all 11.9.2023
numbers from 1 to 10.
14. WAP to display square all 11.9.2023
numbers from 1 to 20.
15. WAP to print the following 25.9.2023
*
**
***
****
16. Take an integer input n from the 9.10.2023
user. Print n Fibonacci numbers.
Recall that Fibonacci series
progresses as 0 1 1 2 3 5 8…
17. WAP to check whether the given 9.10.2023
number is palindrome or not.
18. Take an integer input n from the 16.10.2023
user. Print the table of n.
19. Write a python program to enter a 16.10.2023
string and print the length of the
string using built-in function.
20. Write a python program that 13.11.2023
inputs two tuples and creates a
third that contains all elements of
the first followed by all elements
of the second.
21. Program to write a menu driven 20.11.2023
program to perform various list
operations, such as:
• Append an element
• Insert an element
• Modify an existing element
• Delete an existing element from
its position
• Sort the list in ascending order
• Sort the list in descending order
• Display the list.
22. Write a program to create a phone 27.11.2023
dictionary for the students of class
XI and print their Index values.
23. WAP to search an element in List 27.11.2023
using linear search method.