I'm a beginner in python and easily get stucked and confused...
When I read a file which contains a table with numbers with digits, it reads it as an numpy.ndarray
Python is changing the display of the numbers. For example: In the input file i have this number: 56143.0254154 and in the output file the number is written as: 5.61430254e+04
but i want to keep the first format in the output file. i tried to use the string.format or locale.format functions but it doesn't work
Can anybody help me to do this?
Thanks! Ruxy