#関数定義
def 関数名():
□□実行する処理
def hello():
print("hello")
#関数の呼び出し
関数名()
def hello():
print("hello")
hello()
#多引数の関数
引数をカンマで区切る
def hello(name , greeting):
print(name + "さん、" + greeting)
hello("tanaka" , "こんにちは")
出力結果
tanakaさん、こんにちは