[Python] Solve the 6 problems in Python only using Lists:
7. Find the 1st maximum, 2nd maximum, 1st minimum, 2nd minimum, and the median value from a floating-point list of size 11.
8. Fill an integer list with random values. Separate the even values and store them in a list named evenList, and the odd numbers in another list named oddList. Print all three lists.
9. Take a number from the user. Create a list of that size. Fill the list with the Fibonacci series. Print the list.
10. Find how many prime numbers are there in a list.
11. Convert a decimal number to a binary number.
12. Write a program that counts the number of times each number occurs in a list.