Rock Paper and Scissors
Rock Paper and Scissors
rock = '''
_______
---' ____)
(_____)
(_____)
(____)
---.__(___)
'''
paper = '''
_______
---' ____)____
______)
_______)
_______)
---.__________)
'''
scissors = '''
_______
---' ____)____
______)
__________)
(____)
---.__(___)
'''
# User's choice
user_choice = int(input("What do you choose? Type 0 for Rock, 1 for Paper or 2 for Scissors: "))
if user_choice >= 3 or user_choice < 0:
else:
print("You chose:")
print(game_images[user_choice])
# Computer's choice
computer_choice = random.randint(0, 2)
print("Computer chose:")
print(game_images[computer_choice])
# Game logic
print("You win!")
print("You lose!")
print("You lose!")
print("You win!")
else:
print("It's a draw!")