Advertisement
Guest User

Untitled

a guest
Mar 19th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. ". |
  2. # -----------------------------------------+
  3. def ow():
  4. for i in range(3):
  5. print("OW")
  6. def ding():
  7. for i in range (3):
  8. print("ding")
  9. print("dingeringeding!")
  10. def gering():
  11. for i in range(2):
  12. print("Gering",ding)
  13. def pa():
  14. for i in range(5):
  15. print ("pa")
  16. print("pow!")
  17. def wa():
  18. for i in range(3):
  19. print("Wa", pa)
  20. print("Dog goes woof, cat goes meow.")
  21. print("Bird goes tweet, and mouse goes squeak.")
  22. print("Cow goes moo. Frog goes croak, and the elephant goes toot.")
  23. print("Ducks say quack and fish go blub, and the seal goes", ow )
  24. print("But there's one sound that no one knows...")
  25. print("WHAT DOES THE FOX SAY?")
  26.  
  27. print()
  28.  
  29. print("Ring", ding)
  30. print(gering)
  31. print("WHAT DOES THE FOX SAY?")
  32. print(wa)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement