解决ValueError: complex() arg is a malformed string
程序员文章站
2022-03-10 16:08:52
...
ValueError: complex() arg is a malformed string
原因:
使用complex()方法将字符串转化为复数的时候,字符串中有空格符。
# 错误代码:
print(complex('1 + 2j')) # complex中的字符串‘+’号两边不能有空格
# 修改后:
print(complex('1+2j')) # 正确