so I tried to list some variables and I keep getting a syntax error.
usr1 = 'boy'
usr2 = 'girl'
usr = input("What's your username: ")
if usr != usr1, usr2:
print('Username not found, try again')
then I get an error
if usr != usr1, usr2:
^
SyntaxError: invalid syntax
I also tried to remove the commas, same error, thanks
if usr not in (usr1, usr2)