python字符串替换

时间:2010-06-21 12:35:15

标签: python

是否有一种简单的方法可以将列表作为参数传递给python中的字符串替换? 类似的东西:

w = ['a', 'b', 'c']

s = '%s\t%s\t%s\n' % w

类似于字典在这种情况下的工作方式。

3 个答案:

答案 0 :(得分:11)

只需将列表转换为元组:

w = ['a', 'b', 'c']
s = '%s\t%s\t%s\n' % tuple(w)

答案 1 :(得分:5)

使用元组而不是列表

w = ('a', 'b', 'c')
s = '%s\t%s\t%s\n' % w

使用dict也可以

w = { 'Akey' : 'a', 'Bkey' : 'b', 'Ckey' : 'c' }
s = '%(Akey)s\t%(Bkey)s\t%(Ckey)s\n' % w

http://docs.python.org/release/2.5.2/lib/typesseq-strings.html

答案 2 :(得分:1)

当字符串join可以使用列表为您构建字符串时,不必使用元组而不是列表。

w = ['a', 'b', 'c'] '\t'.join(w) + '\n' # => 'a\tb\tc\n'