Python math.cos() 方法
例如:
查找不同数字的余弦值:
# Import math Library import math # 返回不同数字的余弦值 print (math.cos(0.00)) print (math.cos(-1.23)) print (math.cos(10)) print (math.cos(3.14159265359))
1、定义和用法
math.cos()
方法返回数字的余弦值。
2、调用语法
math.cos(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 查找余弦的数字。 如果该值不是数字, 则返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 1.4 |