Skip to content

Instantly share code, notes, and snippets.

View ScottNeaves's full-sized avatar

Scott T Neaves ScottNeaves

  • Richmond, Virginia
View GitHub Profile
@ScottNeaves
ScottNeaves / hangman.py
Created September 10, 2015 03:45
Play hangman in the console with Python!
###############################################################################################################
# Author: Scott Neaves 09/08/2015 #
# Hangman #
# Python v2.7 #
###############################################################################################################
from random import choice
import string
import webbrowser