File tree 1 file changed +32
-0
lines changed
Filter options
projects/rock-paper-scissors
1 file changed +32
-0
lines changed
Original file line number Diff line number Diff line change @@ -7,3 +7,35 @@ This is a simple Python-based implementation of the classic game where you play
7
7
- Input validation to ensure only valid choices are accepted.
8
8
- Display the final result at the end of the game.
9
9
10
+
11
+ ## How to Play
12
+
13
+ ### Start the Game
14
+
15
+ When you run the script, you'll be prompted to enter the number of rounds you wish to play.
16
+
17
+ ### Make Your Choice
18
+
19
+ For each round, you will be asked to choose one of the following options: ` rock ` , ` paper ` , or ` scissors ` .
20
+
21
+ ### Computer's Choice
22
+
23
+ The computer will randomly select its choice.
24
+
25
+ ### Determine the Winner
26
+
27
+ The winner of each round is determined based on the classic rules of Rock, Paper, Scissors:
28
+
29
+ - ** Rock** crushes ** Scissors**
30
+ - ** Scissors** cuts ** Paper**
31
+ - ** Paper** covers ** Rock**
32
+
33
+ ### View Scores
34
+
35
+ After each round, the scores will be updated and displayed.
36
+
37
+ ### End of Game
38
+
39
+ At the end of all rounds, the final scores will be displayed, and the winner will be announced.
40
+
41
+
You can’t perform that action at this time.
0 commit comments