str字符串 capitalize( ) 方法
阿新 • • 發佈:2018-08-27
class 字符 次數 法語 chan div 統計 art chang
描述
Python count() 方法用於統計字符串裏某個字符出現的次數。可選參數為在字符串搜索的開始與結束位置。
語法
count()方法語法:
str.count(sub, start= 0,end=len(string))
參數
- sub -- 搜索的子字符串
- start -- 字符串開始搜索的位置。默認為第一個字符,第一個字符索引值為0。
- end -- 字符串中結束搜索的位置。字符中第一個字符的索引為 0。默認為字符串的最後一個位置。
返回值
該方法返回子字符串在字符串中出現的次數。
實例
以下實例展示了count()方法的實例:
me = "I’m change, it is a vegetable bag." print("me.count(‘e‘): " ,me.count("e")) print("me.count(‘e‘,2,7): " ,me.count("e",2,7)) print("me.count(‘e‘,7,-1): " ,me.count("a",7,-1))
以上實例輸出結果如下:
me.count(‘e‘): 4 me.count(‘e‘,2,7): 0 me.count(‘e‘,7,-1): 3
str字符串 capitalize( ) 方法