Skip to content

Instantly share code, notes, and snippets.

@Amaya910
Amaya910 / main.py
Created July 27, 2022 13:28
ROCK PAPER SCISSOR
import random
tie = 0
human = 0
computer = 0
keep_playing = True
while keep_playing:
human_choice = input(" Your choice : rock, paper or scissor ")