feat: Semaine 9

This commit is contained in:
gauvainboiche
2026-05-15 16:24:56 +02:00
parent 3315cb2336
commit ce1f0e513a
108 changed files with 3150 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from ftplib import FTP
ftp = FTP()
ftp.connect("127.0.0.1", 2121)
ftp.login("John", "P4ssword!")
print("Connecté au serveur.")
ftp.quit()