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")