Python 関数 1000Python 2023年09月03日 0 1.文法 def 関数名: で関数を定義します2.サンプル#関数 func1def func1(): return "hello"print(func1())3.実行結果hello が表示されました。 PR