I have a series of numbers in the scientific format in a list:
A = [1e-2, 1e-3, 1e-4]
What I want to do is to change A into B:
B = ['1e-2','1e-3','1e-4']
I thought the conversion can be done by:
B = [str(A[ii]) for ii in range(len(A))]
But it gives:
B = ['0.01','0.001','0.0001']