Python三角函数

Posted Hany博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python三角函数相关的知识,希望对你有一定的参考价值。

Python三角函数:

 

 

函数:

\'\'\'

math.sin(x)
返回的x弧度的正弦值。
math.asin(x)
返回x的反正弦弧度值。

math.cos(x)
返回x的弧度的余弦值。
math.acos(x)
返回x的反余弦弧度值。

math.tan(x)
返回x弧度的正切值。
math.atan(x)
返回x的反正切弧度值。

math.degrees(x)
将弧度转换为角度,如degrees(math.pi/2) , 返回90.0
math.radians(x)
将角度转换为弧度
math.hypot(x, y)
返回 sqrt(x*x + y*y) 的值。
\'\'\'

程序:

import math

# π/2 的正弦值
print(math.sin(math.pi/2))
# 1.0

#  1 的反正弦值
print(math.asin(1))
# 1.5707963267948966    π/2

# π 的余弦值
print(math.cos(math.pi))
# -1.0

#  -1 的反余弦值
print(math.acos(-1))
# 3.141592653589793

# 四分之三 π 的正切值
print(math.tan(math.pi*3/4))
# -1.0000000000000002

# 使用 math.degrees(x) 函数查看 四分之一 π 的角度
print(math.degrees(math.pi/4))
# 45.0

# 使用 math.radians(x) 函数查看 135° 对应的弧度制
print(math.radians(135))
# 2.356194490192345
print(math.pi*3/4)
# 2.356194490192345

# math.hypot(x, y) 查看 sqrt(x*x + y*y) 的值
print(math.hypot(3,4))
# 5.0
print(math.hypot(6,8))
# 10.0

print(math.sqrt(6*6 + 8*8))
# 10.0

2020-02-06

以上是关于Python三角函数的主要内容,如果未能解决你的问题,请参考以下文章

python使用上下文对代码片段进行计时,非装饰器

python 元组有用的函数,方法和片段。

Python代码阅读(第26篇):将列表映射成字典

VSCode自定义代码片段——声明函数

Python学习 :函数

VSCode自定义代码片段8——声明函数