如何从变量指定浮点小数精度?
我将以下重复的简单代码重复了几次,我想为其创建一个函数:
for i in range(10):
id = "some id string looked up in dict"
val = 63.4568900932840928 # some floating point number in dict corresponding to "id"
tabStr += '%-15s = %6.1f\n' % (id,val)
我希望能够调用此函数:def printStr( precision)
它执行上面的代码并返回 tabStr
,其中 val
为 precision
小数点。
例如:printStr(3)
将为 tabStr
中的 val
返回 63.457
。
有什么想法如何实现这种功能?
I have the following repetitive simple code repeated several times that I would like to make a function for:
for i in range(10):
id = "some id string looked up in dict"
val = 63.4568900932840928 # some floating point number in dict corresponding to "id"
tabStr += '%-15s = %6.1f\n' % (id,val)
I want to be able to call this function: def printStr(precision)
Where it preforms the code above and returns tabStr
with val
to precision
decimal points.
For example: printStr(3)
would return 63.457
for val
in tabStr
.
Any ideas how to accomplish this kind of functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
其中
i
是小数位数。顺便说一句,在最近的 Python 中,
.format()
已经取代了%
,您可以使用它来完成相同的任务。
或者,为了清楚起见,使用字段名称:
如果您使用的是 Python 3.6+,则可以简单地使用 f 字符串:
where
i
is the number of decimal places.BTW, in the recent Python where
.format()
has superseded%
, you could usefor the same task.
Or, with field names for clarity:
If you are using Python 3.6+, you could simply use f-strings:
我知道这是一个旧线程,但有一种更简单的方法可以做到这一点:
试试这个:
I know this an old thread, but there is a much simpler way to do this:
Try this:
这也应该起作用。
当
i
是所需精度时,This should work too
where
i
is the precision required.在 Python 3.8 和 3.9 中测试:
Tested in Python 3.8 and 3.9: