Python List count() Python List index() Python List extend() Python List count() 在本教程中,我们将了解Python List的 count 方法。Python List count 方法用于计算列表中元素的实例数量。 Python 列表计数示例 您可以简单地使用 count 方法来查找列表中元素出现的次数。 让我们借助简单的例子来理解这一点。 list1=[1,2,3,2,3,2,2,3,4,4,1,1,2] print("Count of 1 in the list1:",list1.count(1)) print("Count of 2 in the list1:",list1.count(2)) print("Count of 3 in the list1:",list1.count(3)) print("Count of 4 in the list1:",list1.count(4)) 输出: Count of 1 in the list1: 3 Count of 2 in the list1: 5 Count of 3 in the list1: 3 Count of 4 in the list1: 2 你也可以找到 set 或 tuple 的计数。让我们在例子的帮助下看看。 list1=['one',{1,2},'three',{1,2}] print('Count of set {1,2}:',list1.count({1,2})) list2=['one',(3,4),'three',(3,4),(3,4)] print('Count of tuple (3,4) :',list2.count((3,4))) 输出: Count of set {1,2}: 2 Count of tuple (3,4) : 3 这就是 Python 列表计数方法的全部内容。 Python List index() Python List extend()