gpt4 book ai didi

python - 使用 string.format 的整数列表连接

转载 作者:行者123 更新时间:2023-11-28 19:55:47 25 4
gpt4 key购买 nike

作为Joining a list that has Integer values with Python ,可以通过转换 str 然后连接它们来连接整数列表。

顺便说一句,我想得到 foo bar 10 0 1 2 3 4 5 6 7 8 9 其中几个数据是第一个(foo, bar),然后是列表 10elements 的大小。

我用string.format作为

x = range(10)
out = '{} {} {} {}'.format('foo', 'bar', len(x), x)

out 将是 foo bar 10 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

为了解决问题,我可以将代码重写为

out = '{} {} {} '.format('foo', 'bar', len(x)) + ' '.join([str(i) for i in x])

它看起来不一致(混合了 string.formatjoin)。我试过了

slot = ' {}' * len(x)
out = ('{} {} {}' + slot).format('foo', 'bar', len(x), *x)

我认为它仍然没有吸引力。 是否可以仅使用 string.format 加入整数列表?

最佳答案

既然喜欢好看,只想用一行,只用format,就可以了

'{} {} {}{}'.format('foo', 'bar', len(x), ' {}' * len(x)).format(*x)
# foo bar 10 0 1 2 3 4 5 6 7 8 9

关于python - 使用 string.format 的整数列表连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23102072/

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