我正在尝试将列表中的多个值放入字符串中。我的代码如下:
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
由于
答案 0 :(得分:9)
答案 1 :(得分:4)
>>> 'ID {0}, {1}, and {2}.'.format(*ID)
'ID 0, 1, and 2.'
您需要打开清单。
你的第二段代码没有多大意义。