Basically I need help in generating even numbers from a list that I have created in Python:
[1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597
iterate through the list and use the modulo operator to check even
for number in list: if (number % 2) == 0: ##EVEN