Python math.radians() 方法
例如:
将不同的度数转换为弧度:
# Import math Library
import math
# Convert different degrees into radians
print(math.radians(180))
print(math.radians(100.03))
print(math.radians(-20))
1、定义和用法
math.radians()
方法将度值转换为弧度。
提示:另请参见math.degrees()
将角度从弧度转换为度。
2、调用语法
math.radians(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 要转换为弧度的度值。 如果参数不是数字,则返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 2.0 |