Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. your_name = input("What is your name? ")
  2.  
  3. verb1 = input("Please enter a verb: ")
  4. adjective1 = input("Please enter an adjective: ")
  5. plural_noun1 = input("Please enter a plural noun: ")
  6. adjective2 = input("Please enter another adjective: ")
  7. verb2 = input("Please enter a verb ending in 'ing': ")
  8. verb3 = input("Please enter another verb: ")
  9. number = input("Please enter a number: ")
  10. adjective3 = input("Please enter another adjective: ")
  11. plural_noun2 = input("Please enter another plural noun: ")
  12. plural_noun3 = input("Please enter another plural noun: ")
  13. plural_noun4 = input("Please enter another plural noun: ")
  14. relative = input("Please enter a plural relative: ")
  15. adjective4 = input("Please enter another adjective: ")
  16. adjective5 = input("Please enter another adjective: ")
  17. plural_noun5 = input("Please enter another plural noun: ")
  18.  
  19. print("""
  20.  
  21.  
  22. {}, Come {} at WALMART, where you'll receive""".format(your_name, verb1))
  23. print("{} discounts on all your favorite name brand".format(adjective1))
  24. print("{}. Our {} and".format(plural_noun1, adjective2))
  25. print("{} associates are there to {}".format(verb2, verb3))
  26. print("you {} hours a day. Here you will find".format(number))
  27. print("{} price on the {} you need.".format(adjective3, plural_noun2))
  28. print("{} for the moms, {} for the kids".format(plural_noun3, plural_noun4))
  29. print("and all the latest electronics for the {}".format(relative))
  30. print("So come on down to your {} {}".format(adjective4, adjective5))
  31. print("WALMART, where the {} come first.".format(plural_noun5))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement