why doesn't it return anything to the console? Could it have been due to the programme i'm using to run it? (Spyder 5.1.5) and if so how do i get the function to run and also show up in console.
def check_even_list(number_list):
for number in number_list:
if number % 2 == 0:
return True
else:
pass
check_even_list([1,2,4,5,7,4,2,5,6,2])