Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. # Sing Happy Birthday to someone
  2. from time import sleep
  3.  
  4. def singHappyBirthday(name):
  5.     sleep(1)
  6.     print("Happy Birthday to you")
  7.     sleep(2)
  8.     print("Happy Birthday to you")
  9.     sleep(2)
  10.     print("Happy Birthday dear", name)
  11.     sleep(2)
  12.     print("Happy Birthday to you")    
  13.  
  14. singHappyBirthday(input("Please type your name here: "))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement