This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print("WELCOME TO 'ROCK, PAPER, SCISSORS' GAME") | |
| user = str(input("enter your choice(rock, paper or scissors?): ")) | |
| if user.lower() not in ["rock", "paper", "scissors"]: | |
| print("please enter one of the options (rock, paper or scissors)!") | |
| quit() | |
| else: | |
| print("user choice: ", user) | |
| import random |