pascalabcnet/TestSamples/PythonABC_Samples/py_test1.py
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

9 lines
85 B
Python

python
# while sample
i = 1
while i<10:
python
print(i)
i=i+1
nohtyp
nohtyp