Files
it_school/Python_module_1/python_007.py
Ionel Andrei Cataon ad4a4cf8f6 Refacere repo
2026-02-12 14:14:46 +02:00

6 lines
106 B
Python

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