如何将列表的值放入字符串中

时间:2010-01-08 12:03:35

标签: python string-formatting

我正在尝试将列表中的多个值放入字符串中。我的代码如下:

ID = [0, 1, 2]
print 'ID {0}, {1}, and {2}.'.format(ID)

print (r'(ID\s*=\s*)(\S+)').format(ID)

这不起作用。有谁知道我哪里出错了。 第二行中的代码打印出列表:

[0, 1, 2]

第一行说:

File "tset.py", line 39, in b
    print 'ID {0}, {1}, and {2}.'.format(ID)
IndexError: tuple index out of range

由于

2 个答案:

答案 0 :(得分:9)

你必须打开清单。

ID = [0, 1, 2]
print 'ID {0}, {1}, and {2}.'.format(*ID)

请参阅文档:Unpacking argument lists

答案 1 :(得分:4)

>>> 'ID {0}, {1}, and {2}.'.format(*ID)
'ID 0, 1, and 2.'

您需要打开清单。

你的第二段代码没有多大意义。