List of Python Revision Programs For 11 Practical
List of Python Revision Programs For 11 Practical
---------------------------------------------------------
1. Write a python program to changing an element at specified possition in the list and Display the list
2. Write a python program to Insert an element at the desired position and Display the list
3. Write a python program to Append a list to the given list and Display the list
4. Write a python program to Modify an existing element and Display the list
5. Write a python program to Delete an existing element by its position and Display the list
6. Write a python program to Delete an existing element by its value and Display the list
7. Write a python program to Sort the list in ascending order and Display the list
8. Write a python program to Sort the list in descending order and Display the list
9. write a python program to print the list of Fibonacci series till given number list/tuple
10. write a python program to print the list of prime no till given number list/tuple
11. Program to increment the elements of a list by 2 if element is even else 3 if it is odd. list must be
entered by user.
12. Program to divide by 2 (make half) if element is even else double if it is odd. list must be entered by
user.
13. A program to calculate average marks of 'n' given students where number of students and marks of
students must be entered by the user.
14. A program to check number is present in the list or not. If the number is present, return the position
of
the number. Print an appropriate message if the number is not present in the list.
15. Write a program to find the number of times an element occurs in the list.
16. Write a program to read a list of n integers (positive as well as negative). Create two new lists, one
having all positive numbers and the other having all negative numbers from the given list. Print all three
lists.
17. Write a program to find the largest element of the list
18. Write a program to find the largest and second largest element of the list
19. Write a program to count the frequency of the given element in a list
20. Write a program to concatenate the two list and replicate the fist list 3 times.
21. Program to count the number of vowels and consonants character list.
22. Program to deleting, popping the Elements from the list. List must be entered by user.
23. Write a program to find sum,len,min,max of the list. List must be entered by user.
24. Write a python program to find the sum and avg of all elements of a list/tuple. List/tuple must be
entered by user.
25. Write a program to create a dictionary of a class containing names as key and their marks as value.
==========================================================