题目:编写update_list函数来更新原数组grid中的值。
# 例如
# grid = [[.05, .1, .1],
[.04, .3, .02],
[.01, .023, .017],
[.005, .012, .06],
[.09, .07, .103]]
# update = [[4, 2], 0.012]]
# 所以grid数组中第 5 行第 3 列的元素将从 0.103 更改为 0.012。
def update_list(grid,update):
#遍历update数组,把有数据的行和列的值分别传递给x和y
for element in update:
x,y = element[0]
#element[1]中包含更新后的值,赋值给grid[x][y]
grid[x][y] = element[1]
return grid