@@ -0,0 +1,15 @@
lista = []
for x in range(3):
for y in range(3):
lista.append((x, y))
lista = [
(x, y)
for x in range(3)
for y in range(3)
]
[(x, letra) for letra in 'Luiz']
print(lista)
The note is not visible to the blocked user.