Sorry I know it's a terribly easy question. But i don't understand why my code returns None
def fun(x, y):
''' takes an orderd list and an another number
as input'''
if y in x:
return print("it's in the list")
else:
return print("number is not in the list")
print(fun([2,3,4,5], 5))