python count函數用法詳解

hzc
發布: 2020-07-04 14:05:25
原創
14312 人瀏覽過

在python中可以使用「count()」函數統計字串裡某個字元出現的次數,該函數用於統計次數,其語法是「count(sub, start= 0,end=len (string))”,其參數sub表示搜尋的子字串。

python count函數用法詳解

Python count() 方法是用來統計字串裡某個字元出現的次數。可選參數為在字串搜尋的開始與結束位置。

語法

count()方法語法:

str.count(sub, start= 0,end=len(string))
登入後複製
  • #sub -- 搜尋的子字串

  • start -- 字串開始搜尋的位置。預設為第一個字元,第一個字元索引值為0。

  • end -- 字串中結束搜尋的位置。字元中第一個字元的索引為 0。預設為字串的最後一個位置。

#!/usr/bin/python
 
str = "this is string example....wow!!!";
 
sub = "i";
print "str.count(sub, 4, 40) : ", str.count(sub, 4, 40)
sub = "wow";
print "str.count(sub) : ", str.count(sub)
登入後複製
str.count(sub, 4, 40) :  2
str.count(sub) :  1
登入後複製

推薦教學: 《Python教學

以上是python count函數用法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板