gpt4 book ai didi

python - 可变数量的前导零

转载 作者:太空宇宙 更新时间:2023-11-04 11:11:39 28 4
gpt4 key购买 nike

在 Python 中我们可以做到

"file_{:03}.ext".format(i)

允许我们轻松地用前导零填充任何数字 i 以适应任何给定的宽度。

但是,如果所需的宽度仅在运行时才知道怎么办?我们还能达到同样的效果吗?

最佳答案

当然,字符串格式支持嵌套。

>>> "file_{:0{}}.ext".format(42, 3)
'file_042.ext'
>>> "file_{:0{}}.ext".format(42, 5)
'file_00042.ext'

关于python - 可变数量的前导零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58089111/

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