Python math.cos() 函数

返回上一级

Python math.cos(x) 函数返回弧度 x 的余弦

导入模块

import math

语法

math.cos(x)

参数

参数 说明
x 一个数值

返回值

返回弧度 x 的余弦值, 值在 [-1,1] 之间

范例

下面的代码使用 math.cos() 函数返回一些数值的余弦

>>> import math
>>> math.cos(3)
-0.9899924966004454
>>> math.cos(-3)
-0.9899924966004454
>>> math.cos(0)
1.0
>>> math.cos(1)
0.5403023058681398
>>> math.cos(math.pi)
-1.0
>>> math.cos(2*math.pi)
1.0

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.