标签:his example 1.5 code 字符串 line 返回 索引 size
描述
Python count() 方法用于统计字符串里某个字符出现的次数。可选参数为在字符串搜索的开始与结束位置。
count()方法语法:
1 str.count(sub, start= 0,end=len(string))
该方法返回子字符串在字符串中出现的次数。
以下实例展示了count()方法的实例:
1 #!/usr/bin/python 2 3 str = "this is string example....wow!!!"; 4 5 sub = "i"; 6 print "str.count(sub, 4, 40) : ", str.count(sub, 4, 40) 7 sub = "wow"; 8 print "str.count(sub) : ", str.count(sub)
以上实例输出结果如下:
1 str.count(sub, 4, 40) : 2 2 str.count(sub, 4, 40) : 1
标签:his example 1.5 code 字符串 line 返回 索引 size
原文地址:http://www.cnblogs.com/zuizui1204/p/6423907.html