Skip to content

Instantly share code, notes, and snippets.

View AbeLs02's full-sized avatar

Saeed Abolhasani Kaleybar AbeLs02

View GitHub Profile
@AbeLs02
AbeLs02 / Rock, Paper, Scissors GAME
Last active November 11, 2021 10:32
Rock, Paper, Scissors GAME
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