Files
it_school/Python_module_1/python_007.py
Ionel Andrei Cataon 80d368e4c5 Python lessons
2026-01-27 20:06:30 +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