Skip to content

Instantly share code, notes, and snippets.

View bradleygrant's full-sized avatar

Bradley Grant bradleygrant

  • Colorado Springs, CO
View GitHub Profile
# Rock, Paper, Scissors command line python3 game
# run at commandline by typing `python rock-paper-scissors.py`
from random import randint # import random for computer choice
class NotAChoiceException(Exception): # creating a custom exception to handle by inputs
"""doc statement about error"""
pass
def takeInput(): # the function that handles input