python如何用count函数 python的count用法

主机教程 建站分享 2年前 (2022-12-03) 209次浏览

文章摘要:python如何用count函数 python的count用法

在python中使用count函数的方法 count:count()函数的作用是用于统计字符串里某个字符出现的 […]

在python中使用count函数的方法

count:count()函数的作用是用于统计字符串里某个字符出现的次数。

count()函数语法:

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

参数:

sub:需要搜索的子字符串。

start :字符串开始搜索的位置。

end:字符串中结束搜索的位置。

count()函数使用方法:

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如何用count函数 python的count用法
文章链接:http://www.7966.org/post/14810.html
转载请注明出处

喜欢 (0)