Solve problem "Even elements" online - Learn Python 3 - Snakify

Even elements


Statement

Given a list of numbers, find and print all elements that are an even number. In this case use a for-loop that iterates over the list, and not over its indices! That is, don't use range()
Advertising by Google, may be based on your interests

In all the problems input the data using input() and print the result using print().