在Python中,可以使用len()
函數來計算數組(列表)的長度。以下是使用len()
函數的語法:
len(array)
其中,array
是要計算長度的數組(列表)。
例如,要計算以下列表的長度:
my_list = [1, 2, 3, 4, 5]
可以使用len()
函數如下:
length = len(my_list)
print("The length of the list is:", length)
輸出結果將是:
The length of the list is: 5