gpt4 book ai didi

python - 如何在python中将字符串转换为复数?

转载 作者:太空宇宙 更新时间:2023-11-04 09:40:51 28 4
gpt4 key购买 nike

我想使用 python 创建一个特殊的计算器,但为此我应该了解更多有关复数的知识。我的计算器必须得到一个字符串并输出复杂的方程式。请帮助我。

myinput = "5 + 2j"
myoutput = ConvertToComplex(myinput) * (3 + 12j) #please help me with writing this function
print(myoutput)

最佳答案

您要查找的函数已内置于 python 中。你只需要先去掉空格:

myinput = "5 + 2j"
mycleaninput = myinput.replace(" ","")
myoutput = complex(mycleaninput) * (3 + 12j)
print(myoutput)

关于python - 如何在python中将字符串转换为复数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51784047/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com