I’m writing floating point numbers to a text file and I’d really appreciate if Python would stop writing numbers like “0.000002” as “2e-6”. What can I do?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use formatting directives, such as this one:
more information about formatting see these Python docs
Or old-style if working pre Python v2.6 (thanks @mgilson and @artSwri)