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
>>> c = ['(37470-880j)','(35093-791j)','(33920-981j)'] >>> map(complex, c) [(37470-880j), (35093-791j), (33920-981j)]