Well, I have a 3x4 array and I want to know how to develop a python code to get the highest value from this array.
My code done so far was this:
LINHAS = 3
COLUNAS = 4
LINHA_
MatrizM = []
for i in range(LINHAS):
MatrizM.append([])
for j in range(COLUNAS):
n = int(input())
MatrizM[i].append(n)
print('=== MATRIZ M ===')
for i in range(LINHAS):
for j in range(COLUNAS):
print(MatrizM[i][j], end='\t')
print()
What I do not know is how I can develop a code that shows me the highest value of this array