I'm currently working on a task and I'm finding that my ELIF statement is not working when I input my values. My inputs for each task are locationchoice = 2 and userchoice = 1.
if locationchoice == "1" or "America" and userchoice == "1":
print("Yes This worked")
elif locationchoice == "2" or "Italy" and userchoice == "1":
print("This worked too")
Every time I run this it always returns "Yes This worked" even with the locationchoice being 2. I might be dumb but any help?