Posts by Monkey Martins • 1 point
1 post
-
-2
votes2
answers47
viewsQ: I need the highest and lowest note of the matrix, but when I print out a vector with the three notes what do I do? I’m using min and max
def mostrandomatriz(): for l in range(0,5): #estética print(f"Aluno {l+1}") print("|-----|") #leitura da coluna e impressão da matriz for c in range(0,3): print(f"|{matriz[l][c]:^5}|") #estética…
pythonasked Monkey Martins 1