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
complex_out = [] for row in out: comp_row = [complex(x) for x in row] complex_out.append(comp_row)