欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决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'))  # 正确
相关标签: python相关