#write a program that randomly generates the list #of ints between 1 and 100 of size 10 #and doing the following: #remove the first even item #find the index of the first odd number #insert the item on the first position (the item will #be user input #delete item on the specific location choosen by user import make_list def main(): my_list=make_list.randomint_list(10, 1,100) print(my_list) found=0 i=0 while(i<10 and found ==0): if(my_list[i]%2 ==0): item = my_list[i] found=1 i=i+1 if(found==1): my_list.remove(item) print("list without first even ") print(my_list) else: print("no even numbers") main()