Advertisement
Mori007

NurserySongFunction

May 8th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. # Function that display a nursery rhyme
  2.  
  3. def sleeping():
  4. print(" Are u sleeping")
  5. print(" Are u sleeping")
  6. print("Brother Mike")
  7. print("Bell is a ringin")
  8. print("Bell is a ringin")
  9. print(" ding ding dong")
  10. print(" dong ding dong")
  11.  
  12. def dumpty():
  13. print("Humpty Dumpty sat on a wall")
  14. print("Humpty Dumpty had a great fall")
  15. print(" All the king's horses and all the king's men")
  16. print(" Couldn't put Humpty together again.")
  17.  
  18. sleeping()
  19. dumpty()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement