Python/ref cmath pi

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python cmath.pi常数

❮cmath方法

打印PI的值:

    #Import cmath Library
import cmath 

# Print the value of pi

    print (cmath.pi)

定义和用法

The cmath.pi 常量返回值pi:3.141592653589793。

定义为圆周与圆直径之比。

注意: 数学上pi表示为 π .

句法

    cmath.pi
  

技术细节

返回值: A

float 值3.141592653589793,代表数学常数 PI

Python版本: 1.5

❮cmath方法