Advertisement
Fareehausman00

Untitled

Sep 21st, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #Happy birthday song generator
  2.  
  3. import time
  4.  
  5. def sing_hb(name):
  6. print "Happy birthday to you"
  7. time.sleep(1)
  8. print "Happy birthday to you"
  9. time.sleep(1)
  10. print "Happy birthday dear",name
  11. time.sleep(1)
  12. print "..."
  13. time.sleep(1)
  14. print "Happy birthday to you!"
  15.  
  16. name = input("What is your name?")
  17. sing_hb(name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement