Okay so...
print("What do you wanna do?")
input1 = input()
if input1 == "Stab this guy" or input1 == "stab this guy":
print("You stabbed that guy and killed him.")
elif input1 == "Punch this guy" or input1 == "punch this guy":
print("You punched him...")
I want to try and create a loop with these complex inputs, so when you enter an input that is still complex but isn't mentioned I want it to print something like "Sorry didn't catch that" so they have to repeat a different input that would be covered in the input list until they say the right input.