Good morning, I'm not able to complete my code, I've already used the For i in range and the for j in range, but I can not complete the code because I need to store the result in another variable and then see if the results are greater than the value x, and then do the print to show me the column and the line that is the highest value, I am using Python together with Pycharm 2016.1
matriz = [[11,12,13,14]
[15,16,17,18]
[19,20,21,22]]
for i in range(matriz.__len__()):
for j in range(matriz.__len__()):
if matriz [i][j]>x: