I\'m trying to write code which imports and exports lists of complex numbers in Python. So far I\'m attempting this using the csv module. I\'ve exported the data to a file u
I think each method above is bit complex
Easiest Way is this
In [1]: complex_num = '-2+3j' In [2]: complex(complex_num) Out[2]: (-2+3j)