cMath模块包含许多函数,用于复数的数学运算。的cmath.acos()函数返回复数的反余弦值。在此函数中传递的值可以是整型,浮点数,和复杂数字。
用法: cmath.acos(x)
参数:此方法仅接受单个参数。
- x:此参数是要传递给acos()的值
返回值:此函数返回a的反余弦值复杂数。
以下示例说明了上述函数的用法:
范例1:在这个例子中,我们可以通过使用cmath.acos() 方法,我们能够获得余弦通过传递任何值给它。
Python3
# Python code to implement
# the acos()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.acos() method
val = cmath.acos(3)
print(val)
输出:
-1.762747174039086j
范例2:
Python3
# Python code to implement
# the acos()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.acos() method
val = cmath.acos(2 + 5j)
print(val)
输出:
(1.1961255219693696-2.3830308809003258j)
相关用法
- Python Wand function()用法及代码示例
- Python int()用法及代码示例
- Python id()用法及代码示例
- Python cmp()用法及代码示例
- Python oct()用法及代码示例
- Python str()用法及代码示例
- Python map()用法及代码示例
- Python now()用法及代码示例
- Python dir()用法及代码示例
- Python ord()用法及代码示例
- Python tell()用法及代码示例
- Python sum()用法及代码示例
- Python hex()用法及代码示例
- Python Wand arc()用法及代码示例
- Python locals()用法及代码示例
- Python join()用法及代码示例
- Python Union()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Python – cmath.acos() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。