Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. def WashingUp():
  2. print("Washing Up")
  3. print("Clean dishes")
  4. print("Clean the cutlery")
  5. print("Dry them all")
  6. print("")
  7. WashingUp()
  8. # Prints my beautiful washing up routine.
  9.  
  10. def Vaccum():
  11. print("Vaccuming")
  12. print("Turn on the vaccum")
  13. print("Suck all the dirt")
  14. print("Turn off the vaccum")
  15. print("")
  16. Vaccum()
  17. # Prints my beautiful vaccuming routine.
  18.  
  19. def MakingBed():
  20. print("Making the bed")
  21. print("Get out of bed")
  22. print("Straighten the duvet")
  23. print("Make sure pillows are clean")
  24. print("")
  25. MakingBed()
  26. # Prints my beautiful bed making routine.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement