gpt4 book ai didi

python - 如何对整个列表进行字符串格式化?

转载 作者:行者123 更新时间:2023-12-01 05:35:51 25 4
gpt4 key购买 nike

我有一个列表/数组,我想对其进行字符串格式。例如,

 a = [1, 2, 3] and output that I want should be 010203

我尝试过 b = "%.2d %(a)" ,但是,它给了我一个错误 TypeError: %d format: a number is required, not list 。当然,我可以理解这个错误,但是,我不知道其他的方式。

代码应该是通用的,我的意思是,当我的列表像 a = [10, 11, 12, 13] 时,然后,它应该打印类似 10111213 的输出.

最佳答案

>>> a = [1,2,3]
>>> "".join("%.2d" % i for i in a)
'010203'
>>> a = [10, 11, 12, 13]
>>> "".join("%.2d" % i for i in a)
'10111213'

关于python - 如何对整个列表进行字符串格式化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19114053/

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