中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

Python count()方法

Python 字符串 Python 字符串


描述

Python count() 方法用于統(tǒng)計(jì)字符串里某個字符出現(xiàn)的次數(shù)??蛇x參數(shù)為在字符串搜索的開始與結(jié)束位置。

語法

count()方法語法:

str.count(sub, start= 0,end=len(string))

參數(shù)

  • sub -- 搜索的子字符串
  • start -- 字符串開始搜索的位置。默認(rèn)為第一個字符,第一個字符索引值為0。
  • end -- 字符串中結(jié)束搜索的位置。字符中第一個字符的索引為 0。默認(rèn)為字符串的最后一個位置。

返回值

該方法返回子字符串在字符串中出現(xiàn)的次數(shù)。

實(shí)例

以下實(shí)例展示了count()方法的實(shí)例:

實(shí)例(Python 2.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)

以上實(shí)例輸出結(jié)果如下:

str.count(sub, 4, 40) :  2
str.count(sub) :  1

Python 字符串 Python 字符串

其他擴(kuò)展