如何将浮点数转换为字符串,但转换为小数点后第六位 - Python
我需要将浮点数转换为字符串,但转换为小数点后第六位。我如何执行这样的任务而不将其转换为带有 E 表示法的字符串?
I need to convert a float to a string, but to the sixth decimal. How would I preform a task like that without converting it into a string with an E notation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还要注意舍入。
请参阅有关 格式字符串语法 和 格式规范迷你语言。
Note the rounding as well.
See the python docs on format string syntax and format specification mini-language.
如果您使用旧版本的 python:
如果您想要“e 表示法”,您可以尝试
或
虽然我现在不确定此方法是否具有很大的灵活性。
If you're on an older version of python:
If you want the "e notation" you can try
or
Though I'm not sure now much flexibility you have with this method.