您的位置:首页 > 编程语言 > Python开发

Python count()方法和Python List count()方法

2016-09-06 11:25 351 查看
本文转载自http://www.runoob.com/python/att-string-count.html

                    http://www.runoob.com/python/att-list-count.html

侵删


描述

Python count() 方法用于统计字符串里某个字符出现的次数。可选参数为在字符串搜索的开始与结束位置。


语法

count()方法语法:
str.count(sub, start= 0,end=len(string))


参数

sub -- 搜索的子字符串

start -- 字符串开始搜索的位置。默认为第一个字符,第一个字符索引值为0。

end -- 字符串中结束搜索的位置。字符中第一个字符的索引为 0。默认为字符串的最后一个位置。


返回值

该方法返回子字符串在字符串中出现的次数。


实例

以下实例展示了count()方法的实例:
#!/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, 4, 40) :  1



描述

count() 方法用于统计某个元素在列表中出现的次数。


语法

count()方法语法:
list.count(obj)


参数

obj -- 列表中统计的对象。


返回值

返回元素在列表中出现的次数。


实例

以下实例展示了 count()函数的使用方法:
#!/usr/bin/python

aList = [123, 'xyz', 'zara', 'abc', 123];

print "Count for 123 : ", aList.count(123);
print "Count for zara : ", aList.count('zara');


以上实例输出结果如下:
Count for 123 :  2
Count for zara :  1
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python