string.capitalize() 首字母大写
string.center(num,str) #用str填充其余位置 num表示字符串有多少字符,str表示用于填充的字符串
name = 'helloworld'
name.center(20,'a')
>>aaaahelloworldaaaa
string,counnt(str,start,end) #范围在start到end内 str字符串出现的次数
#coding=utf-8 name='helloworld' print name.center(20,'a') # print name.count('l')
| |||||||||||
| |||||||||||
|