gpt4 book ai didi

python - 从字典格式化替换

转载 作者:太空宇宙 更新时间:2023-11-03 12:46:38 24 4
gpt4 key购买 nike

我使用字典来格式化字符串:

print '%(duration)s' % {'duration':'898'}

一切都按预期进行。现在我想确保 %(duration) 的替换将在左侧用零填充,因此它有 5 位数字。结果应如下所示:''00898'' 保证持续时间永远不会超过 5 位数。

'%(duration)s' 会是什么样子?

最佳答案

我更愿意使用 str.format这里。示例 -

In [46]: "{duration:0>5}".format(duration='898')
Out[46]: '00898'

如果你想使用字典,你可以将字典解压到 .format 的参数中。示例 -

In [48]: "{duration:0>5}".format(**{'duration':'898'})
Out[48]: '00898'

这里的主要部分是 - {duration:0>5} - 这里的字段名称在 : 之前,0>: 之后表示通过填充 0 进行右对齐,5 表示右对齐的空格量。

您可以找到有关 string format syntax here 的更多信息.

关于python - 从字典格式化替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32779086/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com