Python lessons

This commit is contained in:
Ionel Andrei Cataon
2026-01-27 20:06:30 +02:00
parent c4b2844895
commit 80d368e4c5
10 changed files with 92 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
#!/home/andrei/it_school/bin/python3
i = 1
while i <= 10:
print("Valoarea lui i este:", i)
i += 1