primeiro commit

This commit is contained in:
Fernando Luiz de Lima
2026-03-27 21:02:23 -03:00
commit 4409890ceb
7 changed files with 121 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
lista = []
for i in range(100):
lista.append(i)
print(lista)
#[operacacao 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)