我可以在python中计算exp(1 + 2j)吗?
exp(1+2j)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can't convert complex to float
答案 0 :(得分:20)
答案 1 :(得分:8)
您可能希望从数学模块导入e
来执行此操作。
例如:
>>> from math import e
>>> print e ** (1+2j)
(-1.1312043837568135+2.4717266720048188j)