Python 写一个函数要求函数的参数是一个二维数组求数组中的和
以下是 Python 代码:
def sum_of_array(arr):
total = 0
for i in range(len(arr)):
for j in range(len(arr[i])):
total += arr[i][j]
return total
这个函数接受一个二维数组 arr,并使用嵌套循环遍历数组中的每个元素,将它们累加到 total 变量中。最终,函数返回 total 的值,即数组中所有元素的和。
原文地址: https://www.cveoy.top/t/topic/eFUH 著作权归作者所有。请勿转载和采集!