Last active
April 16, 2021 04:39
-
-
Save cowdinosaur/9e7ddf57a27d7c4ee4f93656c1ccf15d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
HANGMANPICS = [''' | |
+---+ | |
| | | |
| | |
| | |
| | |
| | |
=========''', ''' | |
+---+ | |
| | | |
O | | |
| | |
| | |
| | |
=========''', ''' | |
+---+ | |
| | | |
O | | |
| | | |
| | |
| | |
=========''', ''' | |
+---+ | |
| | | |
O | | |
/| | | |
| | |
| | |
=========''', ''' | |
+---+ | |
| | | |
O | | |
/|\ | | |
| | |
| | |
=========''', ''' | |
+---+ | |
| | | |
O | | |
/|\ | | |
/ | | |
| | |
=========''', ''' | |
+---+ | |
| | | |
O | | |
/|\ | | |
/ \ | | |
| | |
========='''] | |
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