Write a Python script that does the following to my_list mixed list. Count the total number of integer numbers in the list Prints the sum and average of only the integer numbers my_list = [10,’a’,’z’,-15.0,8.00,’h’,9.00,80,’q’,’r’,’s’,4,200,-8.00] NB: Ensure your print output is formatted as described below. Total number of integer numbers in the list: 7Sum of the integer numbers in the list: 14Average of the integer numbers in the list: 2.0