1. Write a python program to create a list of integers usingrandom function. Use map function to process the list on theexpression: 3x2+4x+5 and store the mapped elements in another list.Now use filter to do sum of all the elements in another list.
2. Write a function that takes n as input and creates a list ofn lists such that ith list contains first 10 multiples of i.
3. Write a function that takes a number as input parameter andreturns the corresponding text in word. For example, on input 458,the function should return ‘Four Five Eight’. Use dictionary formapping digits to their string representation.
4. Write a program to create two sets of integer type usingrandom function. Perform following operations on these twosets:
a) Union
b) Intersection
c) Difference
d) Symmetric difference