I need my code to print something certain if a user-inputted integer variable is one of a few certain numbers:
a = int(input())
if a == 1, 3, 6, 9: # <-- This line causes the error
print("yes")
What is in there returns an error, how can I make it work?