Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #Variables
  2. x = input("Silly Word: ")
  3. y = input("Last Name: ")
  4. z = input("Friend: ")
  5. a = input("Animal: ")
  6. b = input("Action: ")
  7. c = input("How You Got Away: ")
  8. d = input("Another Animal: ")
  9. e = input("Other Action: ")
  10.  
  11. #Choose ya words
  12. print(x)
  13. print(y)
  14. print(z)
  15. print(a)
  16. print(b)
  17. print(c)
  18. print(d)
  19. print(e)
  20.  
  21. #Here's da story
  22. print("On a walk through the woods, you(Mr.", x, y, ") and your friend ", z, " ran into a terrifying ", a, ". With your quick thinking, you ", b, " the animal and ", c, " away. Soon, you guys run into a ", d, " and you are forced to ", e, " it as hard as you can.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement