1. Finish the code segment to count how many odd
numbers are in a given list. The code should work for
any list so that I can change myNumbers to something
else and it still works. The code has been started for you.



myNumbers = [1, 2, 3, 8, 9, 10, 17, 18, 19]
count = 0




for i in range (len (myNumbers)) :
print (count)

1 Finish the code segment to count how many odd numbers are in a given list The code should work for any list so that I can change myNumbers to something else a class=