I'm trying to write a function that returns the first even number in a list, using a while loop
def first_even(list):
while i%2 !=0: #I'm not sure if this is a good start for the while loop, but I think I'm supposed to use something%2...
#no idea what to do here