python 复数的数学四则运算
Posted F
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 复数的数学四则运算相关的知识,希望对你有一定的参考价值。
print("Addition of two complex numbers : ",(4+3j)+(3-7j)) print("Subtraction of two complex numbers : ",(4+3j)-(3-7j)) print("Multiplication of two complex numbers : ",(4+3j)*(3-7j)) print("Division of two complex numbers : ",(4+3j)/(3-7j))
以上是关于python 复数的数学四则运算的主要内容,如果未能解决你的问题,请参考以下文章
Python 基础学习之: Python math 模块cmath 模块 区别是 cmath 模块运算的是复数,math 模块运算的是数学运算 Python数学函数列表及解释 Python