亿迅智能制造网
工业4.0先进制造技术信息网站!
首页 | 制造技术 | 制造设备 | 工业物联网 | 工业材料 | 设备保养维修 | 工业编程 |
home  MfgRobots >> 亿迅智能制造网 >  >> Industrial programming >> Python

带有示例的 Python 列表计数()

Python 计数

count() 是 Python 中的内置函数。它将返回列表中给定元素的总数。 count() 函数用于对列表和字符串中的元素进行计数。

在本 Python 教程中,您将学习:

Python 列表计数()

count() 是 Python 中的内置函数。它将返回列表中给定元素的计数。

语法:

list.count(element)

参数:

元素 :要查找的元素的计数。

返回值:

count() 方法将返回一个整数值,即给定列表中给定元素的计数。如果在给定列表中找不到该值,则返回 0。

示例 1:列表计数

以下示例显示了 count() 函数在列表上的工作:

list1 = ['red', 'green', 'blue', 'orange', 'green', 'gray', 'green']
color_count = list1.count('green')
print('The count of color: green is ', color_count)

输出:

The count of color: green is  3

示例 2:查找给定列表中元素的计数(重复项)

list1 = [2,3,4,3,10,3,5,6,3]
elm_count = list1.count(3)
print('The count of element: 3 is ', elm_count)

输出:

The count of element: 3 is  4

总结:


Python

  1. Python Print() 语句:如何通过示例打印
  2. 带有示例的 Python 字符串计数()
  3. Python String format() 举例说明
  4. Python String find() 方法及示例
  5. 带有示例的 Python Lambda 函数
  6. 带有示例的 Python round() 函数
  7. Python range() 函数:Float、List、For 循环示例
  8. 带有示例的 Python map() 函数
  9. Python Timeit() 与示例
  10. 集合中的 Python 计数器示例
  11. Python 中的 type() 和 isinstance() 示例
  12. Python从列表中删除重复项