一.字符串连接
1:Python中可以使用'+'、'+='、连接若干个字符串,如果是以下情况,Python则自动连接:
>>> str = 'fish' 'hat' #若干个字符串之间如果只有空格,Python会自动连接
>>> print str
fishhat
>>> str += ' learning Python!' #使用运算符追加字符串
>>> print str
fishhat learning Python
2:使用str2.join(str)函数进行连接,其中str为需要连接的字符串序列或者一个字符串,str2为连接中填补的字符:
>>> string = ('apple','banana','china')
>>> print '-'.join(string) #向string这个元组中的多个字符串元素之间加上'-'然后输出
apple-banana-china
>>> print ''.join(string) #加入的字符也可以是空的
applebananachina
>>> print '-'.join('fishhat') #直接使用
f-i-s-h-h-a-t #自动在每个子字符中加入'-'
3.使用字符串格式
>>> str12 = '%s %s' % (str1, str2)
>>> print str12
hello world
阅读(1600) | 评论(0) | 转发(0) |