Skip to content

Instantly share code, notes, and snippets.

View MikeMurpher's full-sized avatar

mikemurpher MikeMurpher

View GitHub Profile
@InquisitiveDev2016
InquisitiveDev2016 / RockPaperScissors.py
Last active August 12, 2022 10:33
Make a two-player Rock-Paper-Scissors game.
""" 1.) Understand the problem
Make a two-player Rock-Paper-Scissors game.
2.) Plan a solution
Algorithm:
- Ask player 1 for input either rock paper or scissors
- tell the player what he chose
- Ask player 2 the same thing and tell them what they chose
- while True: