From f4ba285e4bbb9ab4b278e8380cba8bc1c7d59515 Mon Sep 17 00:00:00 2001 From: Colin Chambachan Date: Tue, 27 Oct 2020 15:12:07 -0400 Subject: [PATCH] Update RockPaperScissors.py --- RockPaperScissors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RockPaperScissors.py b/RockPaperScissors.py index b7cc796..ad76b2e 100644 --- a/RockPaperScissors.py +++ b/RockPaperScissors.py @@ -6,7 +6,7 @@ # These are the possible choices in the game, using the randint function, the computer will be a choice based on the integer it chooses -list = ['rock', 'paper', 'scissors'] +list = ['stone', 'paper', 'scissors'] # Compare var1 and computerChoice to see who wins