Python 中計算列表中元素的數量
Vaibhhav Khetarpal
2023年1月30日
2021年3月21日
列表是 Python 提供的內建資料型別。它在單個變數下儲存多個元素。在 Python 程式設計中,列表的使用非常普遍。Python 中的列表可以巢狀。
本教程將討論計算 Python 中 List 中元素數量的不同方法。
使用 len()
函式計算 Python 列表中的元素數
Python 中的列表可以儲存不同資料型別的多個元素。
Python 中內建的 len()
函式可返回列表中的元素總數,而無需考慮其包含的元素型別。
我們還可以使用 len()
函式計算 Python 提供的其他三種內建資料型別的元素數量,即元組,集合和字典。
以下程式碼使用 len()
函式獲取列表中的元素數。
list1 = ["God","Belief",10,31,"Human"]
print("The total number of elements in the list: ", len(list1))
輸出:
The total number of elements in the list: 5
在 Python 中使用 for
迴圈計算列表中的元素數
計算元素數量的另一種基本方法是利用 for
迴圈。迴圈從將計數設定為 0 開始,一直進行到最後一個元素為止;在迴圈迭代中,每當遇到列表中的元素時,計數就會遞增 1。
以下程式碼使用 for
迴圈獲取列表中的元素數。
list2 = ["Hey",20,14,"Look","An Example List"]
def total_elements(list):
count = 0
for element in list:
count += 1
return count
print("The total number of elements in the list: ", total_elements(list2))
輸出:
The total number of elements in the list: 5
Author: Vaibhhav Khetarpal
Vaibhhav is an IT professional who has a strong-hold in Python programming and various projects under his belt. He has an eagerness to discover new things and is a quick learner.
LinkedIn