Python math.degrees() 方法
math.degrees() 方法是 math 模块的库方法,用于将角度值从弧度转换为度数,它接受一个数字并以度数返回角度值。
注意: math.degrees() 方法只接受数字,如果我们提供除数字之外的任何其他内容,则返回错误 TypeError –“TypeError:a float is required”。
math.degrees() 方法的语法:
math.degrees(x)
参数: x
– 是要转换为度数的弧度数。
返回值: float
– 它返回一个浮点值,它是以度为单位的角度值。
例:
Input: x = 10.25 # function call print(math.degrees(x)) Output: 587.2817400090938
用于演示 math.degrees() 方法示例的 Python 代码
# Python code to demonstrate example of
# math.degrees() method
# importing math module
import math
# number in radians
x = 0
print("math.degrees(",x,"):", math.degrees(x))
x = 0.25
print("math.degrees(",x,"):", math.degrees(x))
x = 10.25
print("math.degrees(",x,"):", math.degrees(x))
x = -0.25
print("math.degrees(",x,"):", math.degrees(x))
输出
math.degrees( 0 ): 0.0 math.degrees( 0.25 ): 14.32394487827058 math.degrees( 10.25 ): 587.2817400090938 math.degrees( -0.25 ): -14.32394487827058
类型错误示例
# Python code to demonstrate example of
# math.degrees() method with exception
# importing math module
import math
# number in radians
x = "10"
print("math.degrees(",x,"):", math.degrees(x))
输出
Traceback (most recent call last): File "/home/main.py", line 9, in <module> print("math.degrees(",x,"):", math.degrees(x)) TypeError:a float is required
相关用法
- Python math.dist()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.cosh()用法及代码示例
- Python math.acosh()用法及代码示例
- Python math.fmod()用法及代码示例
- Python math.fsum()用法及代码示例
- Python math.remainder()用法及代码示例
- Python math.asinh()用法及代码示例
- Python math.atanh()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math.log1p()用法及代码示例
- Python math.gcd()用法及代码示例
- Python math.frexp()用法及代码示例
- Python math.isqrt()用法及代码示例
- Python math.ldexp()用法及代码示例
- Python math.acos()用法及代码示例
- Python math.sin()用法及代码示例
- Python math.sqrt()用法及代码示例
- Python math.asin()用法及代码示例
- Python math.hypot()用法及代码示例
注:本文由纯净天空筛选整理自 math.degrees() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。