1. Write a Python program to get the largest number from a list.
2. Write a Python program to get the smallest number from a list.
3. Write a Python program to count the number of strings from a given list
of strings. The string length is 3 or more and the first and last characters
are the same.
Sample List : ['abc', 'xyzx', 'aba', '11',’Er4wq’]
Expected Result : 2
4. Write a Python program to remove duplicates from a list.
5. Write a Python function that takes two lists and returns common
members if they have.
6. Write a Python program that takes a lists and returns the frequency of
occurrence of each member.
7. Write a Python program to count the number of elements in a list within
a specified range including both extremes.
Eg –
L1 = [10, 20, 30, 40, 40, 40, 70, 80, 99]
Range – 30-80
Result- 6