g0thy

happyBirthday

Dec 3rd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. def happyBirthday(name):
  2.     print('Happy Birthday to you')
  3.     print('Happy Birthday to you')
  4.     print('Happy Birthday Dear', name)
  5.     print('Happy Birthday to you \n')
  6.     print('Give Them The Bumps!!')
  7.    
  8. nameS = input("Please type the lucky person's name: ")
  9. nameS = str.capitalize(nameS)
  10.  
  11. happyBirthday(nameS)
Add Comment
Please, Sign In to add comment