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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。