gpt4 book ai didi

python - 在 python 中以格式化字符串列出打印

转载 作者:行者123 更新时间:2023-11-28 20:27:45 26 4
gpt4 key购买 nike

在 python 中打印带有整数和字符串的格式化字符串,我通常会这样做:

print '%d %d - %s' %(x,y, mystr)

打印列表有什么类似的东西吗?我有:

L= [1,0,0]
name = 'V'

我希望输出为:

v(1,0,0)

列表对象是否有类似 %d 的内容?

最佳答案

如果您想完全控制列表的呈现方式,则必须单独设置其格式。

在您的情况下,代码将类似于:

items = [1,0,0]
name = 'V'
formatted = '%s(%s)' % (
name,
','.join(str(it) for it in items)
)

关于python - 在 python 中以格式化字符串列出打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7760869/

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