python如何用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
声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。
本文链接:http://news.ew35.com/