π的取得有很多方法,寫程式最快速的方法是使用內建常數 PI。
其次是使用函數。以下介紹兩種方式。
(ㄧ)使用 math.h 內建常數 M_PI,使用時需 #include <math.h>
範例:
import math
print("π =", math.pi)

(二)使用反三角函數。


範例:
import math
print("π =", math.atan(1)*4)