I have this code which should return true if the input string is one of those words (Helen, Maria, John) otherwise it should return false. But after i put a name i get no result.
name=input("Introduceti un nume:")
def find_name():
if (name) == 'John' or 'Helen' or 'Maria' in:
return True
else:
return False
find_name()