Posts by Paulo Oliveira • 9 points
2 posts
-
0
votes1
answer102
viewsA: Display values that are equal by comparing the 2 matrices
Follows suggested resolution using python: def verifica(matriz, numero): for linha in matriz: for coluna in linha: if coluna == numero: print(coluna) for x in matriz1: for y in x: verifica(matriz2,…
canswered Paulo Oliveira 9 -
-2
votes1
answer93
viewsQ: Program restarts alone and only closes after 2 valid entries
Guys, I was doing some exercises of Gustavo Guanabara and I came across an intriguing situation: my code restarts and his does not!!! It’s Python World 3 Class 22 Exercise 112. I used a 3 file…
pythonasked Paulo Oliveira 9