Primeiro commit

This commit is contained in:
Israel Alves de Oliveira Arruda
2026-03-27 20:48:39 -03:00
commit 16e10afa56
8 changed files with 135 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
lista = []
for i in range(10):
lista.append(i)
print(lista)
#[operacao for i in lista]
lista = [i for i in range(100)]
lista = [i*2 for i in range(100)]
lista = [f"192.168.0.{i}" for i in range(100)]
print(lista)
for ip in lista:
print(ip)