name = "aaa,bbb,ccc" name2 = name.split(",") 以逗号分割作为数组 name.strip() 删除name字符串中开头、结尾处的字符,默认为空格 tab 换行 print(name.center(40,"-")) 40个- 中间为name name3 = ‘|‘.join(name2) #1、join()函数 #语法:‘sep‘.join(seq) #参数说明 #sep:分隔符。可以为空 #seq:要连接的元素序列、字符串、元组、字典 #上面的语法即:以sep作为分隔符,将seq所有的元素合并成一个新的字符串 name3 = "aaa{qq},bbb{cc}" print(name3.format(qq=‘222‘,cc=333)) #format {}里面的 结果:aaa222,bbb333 #print "{0} is {1} writing {3}".format(‘Kee‘,‘now‘,‘Java‘,‘Python‘) python2.6 写法 #print("{0} is {1} writing {3}".format(‘Kee‘,‘now‘,‘Java‘,‘Python‘)) python3 写法 #print ‘{c} {b} {a}‘.format(a = ‘efhdn‘, b = 123, c = 8.3 ) python2.6写法 #print(‘{c} {b} {a}‘.format(a = ‘efhdn‘, b = 123, c = 8.3 )) python3 写法 #print(‘‘ in name) #判断字符串中有没有空格 #str.capitalize() 让字符串首字母大写
原文地址:http://liulidong.blog.51cto.com/9439411/1774028