python中count函数的用法
Python count()方法
描述
Python count() 方法用于统计字符串里某个字符出现的次数。可选参数为在字符串搜索的开始与结束位置。
count()方法语法:
str.count(sub, start= 0,end=len(string))
参数
返回值
该方法返回子字符串在字符串中出现的次数。
以下实例展示了count()方法的实例:
实例(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)
以上实例输出结果如下:
str.count(sub, 4, 40) : 2
str.count(sub) : 1
以上就是python中count函数的用法的详细内容,更多内容可以参阅python博客相关栏目。
Powered By python教程网 鲁ICP备18013710号
python博客 - 小白学python最友好的网站!