To check which elements of a list are even, do the following: for number_i in given_list: if number_i%2 ==0: print(number_i," is even")