「Python」ローカル関数のサンプル
書式
def 関数名():
使用例
#関数の定義
def testfunc():
x = 456
print("ローカル関数のサンプル")
print(x)
testfunc()
#関数の定義
def testfunc():
x = 456
print("ローカル関数のサンプル")
print(x)
testfunc()
#関数の定義 def testfunc(): x = 456 print("ローカル関数のサンプル") print(x) testfunc()
実行結果
ローカル関数のサンプル
456