运行下列代码,输出结果是()
x = [[1,2,3],[4,5,6],[7,8,9]]
y = 0
for i in x:
for j in range(3):
y += i[j]
print(y)
0
25
45
以上结果均不对