#I want the While function to show only when the player has not written 'run' or 'Attack'. What can I do to correct this?
action = input("A goblin ambushes you, what do you do? ")
if action == "Run":
print("You run and get away!")
if action == "Attack":
print("You hit the Goblin, knocking it out!")
while action != "Attack" or "Run":
action = input("That is not an action, what do you do? ")