#Activity 2: Write a function removeOdd #that has one parameter - list of integers #function removes the first odd element from the list #function returns the index of the first odd element in the original list #if there are NO odd elements in the list, function returns the length of the list which is NOT VALID INDEX #The program is partially written for you: #Program randomly generates the list #of ints between 1 and 100 of size 10 #complete the program to print the original list BEFORE function removeOdd was called #call the function removeOdd and print the updated list and the index of the first odd #element in the original list import random def randomint_list(size, min_limit, max_limit): my_list=[] for i in range(size): n=random.randint(min_limit, max_limit) my_list.append(n) return my_list #THIS PART YOU NEED TO WRITE YOURSELF NOW: def removeOdd( write correct parameter ): def main(): #my_list is random list of 10 ints between 1 and 100 my_list=randomint_list(10, 1,100) #COMPLETE THE REST OF THE PROGRAM main()