""" b1.py first version of happy birthday song. """ def birthday(name): print("Happy birthday to you,") print("happy birthday to you,") print("happy birthday dear {},".format(name)) print("happy birthday to you!") def main(): birthday('Sally') main()