I have the following code and if the else is triggered, how do I continue to let them input again instead of it exiting the loop?
Tried some while True stuff but couldn't get it to work.
if awaken in ["a", "stand up"]:
print("Holy...")
elif awaken in ["b", "take a breath"]:
print("Just more text holding")
elif awaken in ["c", "go back to sleep"]:
print("")
else:
print("I don't understand your answer... try again")