strs = ['x=1', 'b=4', 'x=4']
我想得到:
str = 'x=1 AND b=4 AND x=4'
在Python中最简单的方法是什么?
P.S。太愚蠢的问题 实测值:
' AND '.join( strs )
答案 0 :(得分:8)
>>> strs = ['x=1', 'b=4', 'x=4']
>>> print ' AND '.join(strs)
x=1 AND b=4 AND x=4
答案 1 :(得分:2)