Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from time import sleep
- def happy_birthday(name):
- for repeats in range(2):
- print("Happy birthday to you")
- sleep(1)
- print("Happy birthday dear " + name)
- sleep(1)
- print("Happy birthday to you!")
- happy_birthday("Fred")
Advertisement
Add Comment
Please, Sign In to add comment