1. Write a Python program to compute the mean of a list of numbers.
(using
modules)
2. Write a Python program to compute the median of a list of
numbers(using modules)
3. Write a Python program to compute the mode of a list of numbers(using
modules)
4. Write a Python program to find the sum of all even numbers elements in
a tuple/list
5. Write a Python program to find the sum of all numbers in a tuple/list
6. Write a Python program to find the largest or smallest of all elements in a
list/tuple
7. Write a Python program to check whether a given string is palindrome
8. Write a Python program to create a user-defined list
9. Write a Python program to create a user-defined dictionary
10.Write a Python program to create a user-defined tuple
11. Write a Python program to replace all the even numbers in a list of
numbers by multiplying them with 10.
12.Write a Python program to count the number of words in a string
starting with the letter “k”.
13.Write a Python program to count the number of palindrome words in a
given string and display each palindrome word.
14. Write a Python program to count the frequency of numbers in a list. The
number should be the key and the frequency of its occurrence should be
the value in the dictionary
15.Write a Python program to count the frequency of numbers that end with
the digit 4 in a list. The number should be the key and the frequency of its
occurrence should be the value in the dictionary