要在Python中连接2个字符串,我们可以使用串联运算符'+'。例如:
str1 = "Hello" str2 = "World" str3 = str1 + str2 print str3
这将给我们输出:
HelloWorld
我们还可以使用str.join(seq)将多个字符串连接在一起。例如:
s = "-"; seq = ("a", "b", "c"); # This is sequence of strings. print s.join( seq )
这将给我们输出:
a-b-c
请注意,将字符串连接在一起时,我们给出的str用作分隔符。