Python asin() 函數(shù)
描述
asin() 返回x的反正弦弧度值。
語(yǔ)法
以下是 asin() 方法的語(yǔ)法:
import math math.asin(x)
注意:asin()是不能直接訪問(wèn)的,需要導(dǎo)入 math 模塊,然后通過(guò) math 靜態(tài)對(duì)象調(diào)用該方法。
參數(shù)
- x -- -1到1之間的數(shù)值。如果x是大于1,會(huì)產(chǎn)生一個(gè)錯(cuò)誤。
返回值
返回x的反正弦弧度值。
實(shí)例
以下展示了使用 asin() 方法的實(shí)例:
#!/usr/bin/python
import math
print "asin(0.64) : ", math.asin(0.64)
print "asin(0) : ", math.asin(0)
print "asin(-1) : ", math.asin(-1)
print "asin(1) : ", math.asin(1)
以上實(shí)例運(yùn)行后輸出結(jié)果為:
asin(0.64) : 0.694498265627 asin(0) : 0.0 asin(-1) : -1.57079632679 asin(1) : 1.57079632679
更多建議: