For background, I'm coming from coding in scratch. :p (Gotta start somewhere)
Here is the buggy script:
user_input = input("What operation would you like to do? (Options: + - * /) : ")
x = user_input
if x == "+" or "-" or "*" or "*" or "/":
print("Valid Syntax")
else:
print("Invalid Syntax")
Oh, and the issue is that it keeps giving the if statement as true