1
I managed to develop so far, you should not print spaces after the last element of each line which makes the exercise go wrong, someone knows another method ?
minha_matriz= [[1,2,3],[4,5,6],[7,8,9]]
def imprime_matriz(minha_matriz):
for i in range(len(minha_matriz)):
print(end="\n")
for j in range(len(minha_matriz[i])):
print(minha_matriz[i][j], end =' ')
Thank you so much for your reply, gave me a floor ... VLW
– Fujimoto
Not at all. : ) If the answer was helpful, please consider mark her as accepted.
– Luiz Vieira
Could you help me with this exercise ? http://answall.com/questions/186090/operator-subtract%C3%A7%C3%A3o-n%C3%A3o-recognized-no-python
– Fujimoto