Python/ref math tau

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

<languages />

Python math.tau常数

Methods数学方法

打印tau的值:

    # Import math Library
import math 

# Print the value of tau

    print (math.tau)

定义和用法

The math.tau 常量返回tau的值,即6.283185307179586。

定义为圆周与半径之比。Tau是一个圆常数,其值等于2π。

注意: 数学上tau由τ表示。

句法

math.tau

技术细节

返回值: A

float 值6.283185307179586,代表数学常数tau

Python版本: 3.6

Methods数学方法