如何使Python中的浮点值显示.00而不是.0?
简单的问题,抱歉我无法弄清楚。我有一些数字是由 浮动(字符串) 它们显示为 xxx.0,但如果确实是整数,我希望它们以 .00 结尾。我该怎么做?
谢谢!
编辑:
Python 说 float 没有 cal 'format()'
Simple question, sorry I can;t figure this out. I have some numbers that are made by
float(STRING)
and they are displayed as xxx.0, but I want them to end in .00 if it is indeed a whole number. How would I do this?
Thanks!
EDIT:
Python saiys that float doesn't have a cal 'format()'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
还:
Also:
有关
{0}.format()
语法的详细信息,请参阅此处:格式字符串语法For more information about the
{0}.format()
syntax, look here: Format String Syntax如果您不喜欢数字四舍五入,则只需执行以下操作:
If you do not like the numbers to be rounded, you need to do little more: