Python:def文
Pythonで関数を定義するのはdef文を用いる。
defステートメント
関数は「システム」なので入力と出力を持つ。
関数では入力を「引数」、出力を「戻り値」という。
code:py
def 関数名(引数,引数2, …,):
関数ブロック
return 戻り値
Python:関数
(function)
Python:引数
(Arguments)
Python:戻り値
、返り値、返却値(return value)
Python:メソッド
(method)
Python:self