📜  在Python中查找列表的大小

📅  最后修改于: 2022-05-13 01:54:37.541000             🧑  作者: Mango

在Python中查找列表的大小

在Python中,List 是一种有序且可变的集合数据类型。列表也可以有重复条目。在这里,任务是查找列表中的条目数。请参阅下面的示例。

例子:

Input : a = [1, 2, 3, 1, 2, 3]
Output : 6
Count the number of entries in the list a.

Input : a = []
Output : 0

这个想法是在Python中使用 len()

# Python program to demonstrate working
# of len()
a = []
a.append("Hello")
a.append("Geeks")
a.append("For")
a.append("Geeks")
print("The length of list is: ", len(a))
输出:
The length of list is:  4

示例 2:

# Python program to demonstrate working
# of len()
n = len([10, 20, 30])
print("The length of list is: ", n)
输出:
The length of list is:  3

len() 是如何工作的?
len() 在 O(1) 时间内工作,因为 list 是一个对象,并且有一个成员来存储它的大小。以下是Python文档中对 len() 的描述。

如何在Python中检查列表是否为空