1、capitalize()将字符串的第一个字符改为大写
>>>s = "i love you"
>>>s.capitalize
"I love you"
2、casefold()将字符串所有字符改为小写
>>>(s.capitalize).casefold()
"i love you"
3、center(width)将字符串居中,并用空格字符串填充至width长度,空格均匀分布在两侧,当width
>>>s.center(30)
' i love you '
4、count(str[,start[,end]])返回str在字符串中出现的次数,start,end为可选参数,决定范围
>>>s.count("o")
2
>>>s.count("o",5)
1
>>>s.count("o",7,len(s))
1
5、encode(encoding=”utf-8”,errors=”strict”)以encoding指定的方式对字符串进行编码。
待完善
7、expandtabs([tabsize = 8])把字符串的tab字符(\t)转化为空格,如不指定tabsize,默认为8个空格
>>> s = "\t i love you \t"
>>> s.expandtabs()
' i love you '
>>> s.expandtabs(tabsize = 4)
' i love you '
8、find(str[,start[,end]]) 检查str是否在字符串中,如果在则返回字符串第一次出现的index,否则返回-1,start和end为可选参数,决定范围
rfind(str[,start[,end]]) 检查str是否在字符串中,如果在则返回字符串从右开始第一次出现的index,否则返回-1,start和end为可选参数,决定范围
>>> s = "i love you"
>>> s.find("o")
3
>>> s.find("o",3)
3
>>> s.find("o",4,13)
8
>>> s.find("a")
-1
>>> "this is an apple".rfind("a")
11
>>> "this is an apple".rfind("a",12)
-1
>>> "this is an apple".rfind("a",