Posts by Pedro Vaz • 1 point
1 post
-
0
votes4
answers8205
viewsA: How to get the highest value of a python array / vector?
maior_linha = matriz.index(max(matriz)) maior_coluna = matriz[maior_linha].index(max(matriz[maior_linha])) print(f'localização maior valor: ({maior_linha}, {maior_coluna})') That’s the simplest way…