Advertisement
Guest User

Untitled

a guest
May 12th, 2016
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.24 KB | None | 0 0
  1. pictures = [
  2.     """
  3.  ----------|
  4. /
  5. |
  6. |
  7. |
  8. |
  9. |
  10. |
  11. ______________
  12.  
  13. Strike one, the tigers are getting lonely!""",
  14.     """
  15.  ----------|
  16. /          O
  17. |
  18. |
  19. |
  20. |
  21. |
  22. |
  23. ______________
  24.  
  25. Strike two, pressure getting to you?""",
  26.     """
  27.  ----------|
  28. /          O
  29. |         \_|_/
  30. |
  31. |
  32. |
  33. |
  34. |
  35. ______________
  36.  
  37. Strike three, are you even trying?""",
  38.     """
  39.  ----------|
  40. /          O
  41. |         \_|_/
  42. |           |
  43. |
  44. |
  45. |
  46. |
  47. ______________
  48.  
  49. Strike four, might aswell giveup, your already half way to your doom. Oh wait, you can't give up.""",
  50.     """
  51.  ----------|
  52. /          O
  53. |         \_|_/
  54. |           |
  55. |          / \
  56. |
  57. |
  58. |
  59. ______________
  60.  
  61. One more shot and your done for, though I knew this would happen from the start"""
  62. ]
  63.  
  64. game_over = """
  65.  ----------|
  66. /          O
  67. |         \_|_/
  68. |           |
  69. |          / \
  70. |       GAME OVER!
  71. |
  72. |
  73. ______________
  74. haha, its funny cause you lost."""
  75.  
  76.  
  77. def hangman():
  78.     if guess == 0:
  79.         print game_over
  80.         print "p.s the word was", choice
  81.         print
  82.     else:
  83.         print pictures[len(pictures) - guess]
  84.         time.sleep(.5)
  85.         print "You have guessed the letters- ", guessedLetters
  86.         print " ".join(blanks)
  87.         print
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement