pythonサンプルコード
def happy():
print("Happy Birthday to you!!!")
def sing(P):
happy()
happy()
print("Happy Birthday dear" + P + "!")
happy()
sing("Fred")
Output
>>
Happy Birthday to you!!!
Happy Birthday to you!!!
Happy Birthday dearFred!
Happy Birthday to you!!!