These are my arrays
image = [[0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0],
[0,0,1,1,1,1,1,1,0,0],
[0,0,1,1,1,1,1,1,0,0],
[0,0,1,1,1,1,1,1,0,0],
[0,0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0,0]
]
image1 = [[0,0,0,0,0,0,0,0,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0],
[0,0,1,0,0,0,1,1,0,0]
]
I want to get the average of each element from the different arrays and make a list of new averages, please help