📜  python 多维数组中的元素个数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:15.633000             🧑  作者: Mango

代码示例1
#Example for a 2D list
an_array = [[1, 2], [3, 4, 5]]
total_length = sum(len(row) for row in an_array)
print(total_length)
#OUTPUT: 5