Python List count() 方法

返回上一级

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

语法

list_obj.count(obj)

参数

参数 说明
obj 列表中统计的对象

返回值

元素在列表中出现的次数

范例

下面的代码使用 count() 方法返回元素在列表中出现的次数

>>> p1 = ['PEK', 28, 'Tsinghua','Li Bai', 'Tsinghua']
>>> p1.count('PEK')
1
>>> p1.count('Tsinghua')
2
>>> p1.count('Shanghai')
0

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.