Pythonの関数を使う
関数を定義してみる
数学モジュール(mathモジュール)をインポートする。
>>> import math
円周を求める関数
>>> def circumference(r):return 2*r*math.pi
円の面積を求める関数
>>> def area(r):return r*r*math.pi
球の体積を求める関数
>>> def volume(r):return (4/3)*r*r*r*math.pi
関数を使ってみる
>>> n = 5
>>> print (circumference(n))
>>> print (area(n))
>>> print (volume(n))
https://img.shields.io/badge/python-Pythonの関数を使う-3776AB.svg?style=for-the-badge&logo=python&logoColor=EECC00