打印浮点数时如何抑制科学计数法?

编程入门 行业动态 更新时间:2024-10-24 08:31:16
本文介绍了打印浮点数时如何抑制科学计数法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

这是我的代码:

x = 1.0 y = 100000.0 print x/y

我的商显示为1.00000e-05.

有什么方法可以压制科学记数法并使其显示为 0.00001?我将结果用作字符串.

Is there any way to suppress scientific notation and make it display as 0.00001? I'm going to use the result as a string.

推荐答案

'%f' % (x/y)

但是您需要自己管理精度.例如,

but you need to manage precision yourself. e.g.,

'%f' % (1/10**8)

仅显示零. 详细信息在文档中

will display zeros only. details are in the docs

或者对于Python 3 等效的旧格式

Or for Python 3 the equivalent old formatting or the newer style formatting

更多推荐

打印浮点数时如何抑制科学计数法?

本文发布于:2023-11-29 21:58:37,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1647743.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:抑制   科学   浮点数

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!