Python 関数の例 1000Python 2022年08月15日 0 1.サンプル# # coding: utf-8# 関数の例def func1(): return "func1"print(func1())2.実行結果func1が表示されます PR