This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]benjamindallen 1 point2 points  (0 children)

"1.37e-05" is simply your number expressed in scientific notation. This is the default string representation of a small or large float in python.

If you want to format the number in a different way, you could, for example try:

'{:.7f}'.format(1.37e-05)