Python List count()方法
Python List count()方法
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 while 循环语句
- Python continue 语句
- Python 元组
- Python IDE
- Python 数据结构
- Python3 环境搭建
- Python3 数字(Number)
- Python3 集合(Set)
- Python3 面向对象
- Python3 多线程
- Python max() 函数
- Python File isatty() 方法
- Python os.dup() 方法
- Python os.fchown() 方法
- Python os.fdatasync() 方法
- Python os.pipe() 方法
- Python swapcase()方法
- Python List len()方法
- Python 字典 Dictionary cmp()方法
- Python 字典 Dictionary copy()方法