decision = input("Would you like to try again?(y/n) (or 'Help' for instructions")
if decision != "y" or decision != "n" or decision != "Help:":
print("This input is not readable! Try again!")
I'm working on a program. I just wrote some code, so it's not too long. This is a different code from what I'm currently working on. But it's the same question:
What's the easiest way to write the if statement in one line? Is there any way I can get all of that in one line?
If this is not enough information let me know.