小能豆

如何在 Python 中获取列表中元素的数量(列表的长度)?

javascript

如何获取列表中元素的数量items

items = ["apple", "orange", "banana"]

# There are 3 items.

阅读 45

收藏
2024-09-09

共1个答案

小能豆

要获取 Python 中列表中元素的数量,可以使用内置len()函数。以下是获取列表的方法items

items = ["apple", "orange", "banana"]

# Get the number of elements in the list
number_of_items = len(items)

print(number_of_items)  # Output: 3

解释

  • len(items):此函数返回列表的长度items,即它包含的元素的数量。
  • number_of_items:存储列表中项目数量的变量。

因此,在您的示例中,len(items)将返回,因为列表中3有三个元素("apple"、、"orange"和)。"banana"

2024-09-09