5.2 引数の型式
5.2-1 位置引数とキーワード引数
①位置引数
関数の定義の引数の順に引数を渡す方法
関数
def method1(bottom, height)
呼び出し
method1(10, 5)
②キーワード引数
「引数名=値」の形で引数を渡す方法
関数
def method1(bottom, height)
呼び出し方法1
method1(bottom=10, height=5)
呼び出し方法2 ※関数の引数の順でなくても可
method1(height=5, bottom=10)