5.関数
5.1 関数の作り方・使い方
5.1-1 関数の定義
関数の定義 def 関数名(引数, ・・・・) 処理内容 ・・・・ return 戻り値
①関数の例 test0501.py
def get_tri_atra(bottom, heght):
area = bottom * height / 2
return area
②関数の使用例
import test0501
print(test0501.get_tri_atra(10, 5))
->25.0