python中使用math模塊中的常量pi計算圓周長,具體方法如下:
1.首先,在python中導入math模塊;
import math
2.math模塊導入后,執行以下命令即可對圓的周長進行計算;
import math
radius1 = input("radius of cricle:")
radius2 = float(radius1)
circumference=2*math.pi*radius2
print("circumference of circle:",circumference)