Python List count()方法
Python List count()方法
count() 方法用于統(tǒng)計(jì)某個(gè)元素在列表中出現(xiàn)的次數(shù)。
語法
count()方法語法:
list.count(obj)
參數(shù)
- obj -- 列表中統(tǒng)計(jì)的對象。
返回值
返回元素在列表中出現(xiàn)的次數(shù)。
實(shí)例
以下實(shí)例展示了 count()函數(shù)的使用方法:
#!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc', 123]; print "Count for 123 : ", aList.count(123); print "Count for zara : ", aList.count('zara');
以上實(shí)例輸出結(jié)果如下:
Count for 123 : 2 Count for zara : 1
相關(guān)文章
- Python while 循環(huán)語句
- Python continue 語句
- Python 元組
- Python IDE
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python3 環(huán)境搭建
- Python3 數(shù)字(Number)
- Python3 集合(Set)
- Python3 面向?qū)ο?/a>
- Python3 多線程
- Python max() 函數(shù)
- 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()方法