「Python」ローカル関数のサンプル

2021年7月16日

書式
def 関数名():
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
#関数の定義
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

Python

Posted by arkgame