當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python math.radians()用法及代碼示例


Python math.radians() 方法

math.radians() 方法是 math 模塊的庫方法,用於將角度值從度數轉換為弧度,它接受一個數字並以弧度為單位返回角度值。

注意: math.radians() 方法隻接受數字,如果我們提供除數字之外的任何其他內容,則返回錯誤 TypeError –“TypeError:a float is required”。

math.radians() 方法的語法:

    math.radians(x)

參數: x– 是要轉換為弧度的度數。

返回值: float– 它返回一個浮點值,該值是以弧度為單位的角度值。

例:

    Input:
    x = 10.25

    # function call
    print(math.radians(x))

    Output:
    0.17889624832941878

用於演示 math.radians() 方法示例的 Python 代碼

# Python code to demonstrate example of 
# math.radians() method

# importing math module
import math 

# number in radians
x = 0
print("math.radians(",x,"):", math.radians(x))

x = 0.25
print("math.radians(",x,"):", math.radians(x))

x = 10.25
print("math.radians(",x,"):", math.radians(x))

x = -0.25
print("math.radians(",x,"):", math.radians(x))

輸出

math.radians( 0 ): 0.0
math.radians( 0.25 ): 0.004363323129985824
math.radians( 10.25 ): 0.17889624832941878
math.radians( -0.25 ): -0.004363323129985824

類型錯誤示例

# Python code to demonstrate example of 
# math.radians() method with exception

# importing math module
import math 

# number in radians
x = "10"
print("math.radians(",x,"):", math.radians(x))

輸出

Traceback (most recent call last):
  File "/home/main.py", line 9, in <module>
    print("math.radians(",x,"):", math.radians(x))
TypeError:a float is required


相關用法


注:本文由純淨天空篩選整理自 math.radians() method with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。