complex() 用于将一个对象转换为复数
In [1]: complex(123) # 将整数转换为复数 Out[1]: (123+0j) In [2]: complex('123') # 将纯数字的字符串转换为复数 Out[2]: (123+0j)