Untitled

 avatar
RonGut23
plain_text
a year ago
272 B
2
Indexable
lista = ["Notebook", "Celular", "Rexona"]
for x in range(10, 132): # Eu fiz assim, por que assim lista de 10 a 131
    print(lista, x)
matriz = [["Notebook", 2500], ["Celular", 1400], ["Blusa Moleton", 90]]
print(matriz[0][0])
print(matriz[1][0])
print(matriz[2][0])
Editor is loading...
Leave a Comment