Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 611 Bytes

README.md

File metadata and controls

2 lines (2 loc) · 611 Bytes

game

To make a rock, paper, and scissors game with Python. In the rock, paper and scissors game our goal is to create a command-line game where a user has the option to choose between rock, paper and scissors and if the user wins the score is added, and at the end when the user finishes the game, the score is shown to the user. To create the Rock, Paper and Scissors game with Python, we need to take the user’s choice and then we need to compare it with the computer choice which is taken using the random module in Python from a list of choices, and if the user wins then the score will increase by 1.