Skip to content

Instantly share code, notes, and snippets.

@Tauquir90
Forked from chrishorton/hangmanwordbank.py
Created March 18, 2021 16:29
Show Gist options
  • Save Tauquir90/b1d76412c370c0817b5588b10a5b9609 to your computer and use it in GitHub Desktop.
Save Tauquir90/b1d76412c370c0817b5588b10a5b9609 to your computer and use it in GitHub Desktop.
Hangman ascii art and wordbank
HANGMANPICS = ['''
+---+
| |
|
|
|
|
=========''', '''
+---+
| |
O |
|
|
|
=========''', '''
+---+
| |
O |
| |
|
|
=========''', '''
+---+
| |
O |
/| |
|
|
=========''', '''
+---+
| |
O |
/|\ |
|
|
=========''', '''
+---+
| |
O |
/|\ |
/ |
|
=========''', '''
+---+
| |
O |
/|\ |
/ \ |
|
=========''']
#Word bank of animals
words = ('ant baboon badger bat bear beaver camel cat clam cobra cougar '
'coyote crow deer dog donkey duck eagle ferret fox frog goat '
'goose hawk lion lizard llama mole monkey moose mouse mule newt '
'otter owl panda parrot pigeon python rabbit ram rat raven '
'rhino salmon seal shark sheep skunk sloth snake spider '
'stork swan tiger toad trout turkey turtle weasel whale wolf '
'wombat zebra ').split()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment