Python/ref math pi

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

<languages />

Python math.pi常数

Methods数学方法

打印PI的值:

    # Import math Library
import math 

# Print the value of pi

    print (math.pi)

定义和用法

The math.pi 常数会传回PI值:3.141592653589793。

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

句法

math.pi

技术细节

返回值: A

float 值3.141592653589793,代表数学常数PI

Python版本: 1.4

Methods数学方法