I'm not sure what I'm doing wrong. I want to make it so that if the user enters a name which isn't of those specified the program should print the else statement at the bottom. I also want the elif statements to work so if the users enter their age then the correct print statement should show.
name = input("What is your name?")
if name == "Jean Gray" or "Max Eisanhardt" or "James Howlett" or "Anne Marie":
age = int(input("How old are you?")
if age <= 12:
print ('You should be placed in the junior category because you are younger than 12 years old')
elif age >= 18:
print ('You should be placed in the senior category because you are older than 18 years old')
elif age <=17:
print ('You should be places in the teen category')
else:
print("Sorry, that name is not recognised.")