math.cos() 方法是 Python 的 math 模块中的一个函数,用于计算给定角度的余弦值(cosine)。

以下是 math.cos() 方法的基本语法:
math.cos(x)

  •  x: 一个以弧度为单位的角度。


返回值是一个浮点数,表示给定角度的余弦值。

以下是一些示例:
import math

# 计算 60 度的余弦值
angle_rad = math.radians(60)
result1 = math.cos(angle_rad)
print(result1)  # 输出 0.5

# 计算 45 度的余弦值
angle_rad = math.radians(45)
result2 = math.cos(angle_rad)
print(result2)  # 输出 0.7071067811865476

# 计算 π 的余弦值
result3 = math.cos(math.pi)
print(result3)  # 输出 -1.0

在这个例子中,math.cos() 函数分别计算了 60 度、45 度和 π 的余弦值。需要注意的是,math.cos() 函数的参数应该是以弧度为单位的角度,如果角度是以度数给出的,可以使用 math.radians() 函数将其转换为弧度。


转载请注明出处:http://www.zyzy.cn/article/detail/358/Python3