Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.10 KB | None | 0 0
  1. HANGMAN_ASCII_ART = ("""  _    _                                        
  2. | |  | |                                        
  3. | |__| | __ _ _ __   __ _ _ __ ___   __ _ _ __  
  4. |  __  |/ _` | '_ \ / _` | '_ ` _ \ / _` | '_ \
  5. | |  | | (_| | | | | (_| | | | | | | (_| | | | |
  6. |_|  |_|\__,_|_| |_|\__, |_| |_| |_|\__,_|_| |_|
  7.                      __/ |                      
  8.                     |___/""")
  9. MAX_TRIES = 6
  10. print (HANGMAN_ASCII_ART)
  11. import random
  12. random.  randint(5, 10)
  13. picture_1 = ("""x-------x""")
  14.  
  15. picture_2 = ("""x-------x
  16.    |
  17.    |
  18.    |
  19.    |
  20.    |""")
  21. picture_3 = ("""x-------x
  22.    |       |
  23.    |       0
  24.    |
  25.    |
  26.    |""")
  27. pictrue_4 = ("""x-------x
  28.    |       |
  29.    |       0
  30.    |       |
  31.    |
  32.    |
  33. """)
  34. pictrue_5 = ("""x-------x
  35.    |       |
  36.    |       0
  37.    |      /|\
  38.    |
  39.    |""")
  40. picture_6 = ("""x-------x
  41.    |       |
  42.    |       0
  43.    |      /|\
  44.    |      /
  45.    |
  46. """)
  47. pictrue_7 = ("""x-------x
  48.    |       |
  49.    |       0
  50.    |      /|\
  51.    |      / \
  52.    |""")
  53. letter_guess = input ("Guess a letter: ")
  54. print (letter_guess)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement