Python论坛  - 讨论区

标题:Python Cookbook 之 复数的表达法与计算

2014年04月04日 星期五 09:12

貌似很久很久没有使用过复数表达什么东西了。但如果你需要,记得Python内置复数的支持,可以随时使用。

代码示例如下:

a=complex(2,4)
b=3-5j
print(a,b)
print(type(b))
print(a.real,a.imag,a.conjugate())

print(a+b)
print(a*b)
print(abs(a))

import cmath
print(cmath.sin(a))
print(cmath.cos(b))

参考资料:

https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2024

    京ICP备05028076号