1.最简单的方式:直接用+连接
str1=‘hello’
str2=’world‘
str3=str1+str2
问题:在str3=str1+str2这句的时候,python会为每一个参加连接操作的字符串分配新的内存,包括新产生的字符串。
2.用%进行连接操作
‘%s %s’ % (‘hello’,'world')
3.用join()方法连接
' '.join(('hello', 'world'))
1.最简单的方式:直接用+连接
str1=‘hello’
str2=’world‘
str3=str1+str2
问题:在str3=str1+str2这句的时候,python会为每一个参加连接操作的字符串分配新的内存,包括新产生的字符串。
2.用%进行连接操作
‘%s %s’ % (‘hello’,'world')
3.用join()方法连接
' '.join(('hello', 'world'))