How to use asin() function to get the arc sine value of N in radians with Python

1 Answer

0 votes
import math

print(math.asin(0))
print(math.asin(0.34))
print(math.asin(-1))
print(math.asin(1))


'''
run:

0.34691689752716176
-1.5707963267948966
1.5707963267948966

'''

 



answered Oct 2, 2017 by avibootz

Related questions

...