# Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings. print("Welcome, user, to Rock Paper Scissors, or RPS for short.") while True: answer = input("Would you like to read the rules? ").lower() # check if the user says yes or no if answer == "yes" or answer == "y": print("first select an ability to use: Rock, Paper, Or Scissors.") print("the enemy will then also select an ability to use.") print("Rock beats scissors, scissors beats paper, and paper beats rock.") print("if the enemy beats you, you lose EXP. But if you win, you gain EXP.") print("beat as many enemies as you can to gain points and climb up the leaderboard!") print("good luck traveller, i have faith in you. hone your skills and im sure you will become a great fighter.") break elif answer == "no" or answer == "n": print("damn bro i spent a while writing this.") print("that hurt my feelings.") print("PROCESS TERMINATED") break else: print("nah twan u tweakin frfr (please enter yes/no) ") continue print("BIOMETRIC SCANNING COMPLETE") print("PROCEEDING...")