From 0f27bc51ae8aabd596e91cc67b0ab77f155a53d9 Mon Sep 17 00:00:00 2001 From: WeShallCode Date: Tue, 5 Dec 2017 21:39:17 +0800 Subject: [PATCH] Added comments --- rpsGame.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rpsGame.py b/rpsGame.py index a1de517..7aaee12 100644 --- a/rpsGame.py +++ b/rpsGame.py @@ -8,6 +8,7 @@ computerScore = 0 # Returns computer moves +# this functions return a string def computerMove(): return movesList.index(choice(movesList))