cmath是用于复数数学的Python 内置模块。 cmath模块具有方法tan(),该方法返回传递给它的复数的正切值。
用法: cmath.tan(Z)
参数:它仅需要一个参数,即需要为其计算切线的数字。
返回:返回一个复数,该复数是传递的数字的正切值。
范例1:
Python3
# Import the Library
import cmath
# Printing the result
print (cmath.tan(5 + 3j))
输出:
(-0.002708235836224072+1.0041647106948153j)
范例2:在此示例中,传递了实数,但返回的结果仍然是复数。
Python3
# Import the Library
import cmath
# Printing the result
print (cmath.tan(1))
输出:
(1.5574077246549023+0j)
范例3:在此示例中,没有传递参数,在这种情况下将抛出TypeError
Python3
# Import the Library
import cmath
# Printing the result
print (cmath.tan())
输出:
TypeError:tan() takes exactly one argument (0 given)
相关用法
- Python Wand function()用法及代码示例
- Python dir()用法及代码示例
- Python now()用法及代码示例
- Python ord()用法及代码示例
- Python tell()用法及代码示例
- Python id()用法及代码示例
- Python map()用法及代码示例
- Python cmp()用法及代码示例
- Python int()用法及代码示例
- Python oct()用法及代码示例
- Python hex()用法及代码示例
- Python sum()用法及代码示例
- Python str()用法及代码示例
- Python cmath.sin()用法及代码示例
- Python numpy.ix_()用法及代码示例
注:本文由纯净天空筛选整理自aman neekhara大神的英文原创作品 Python – cmath.tan() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。