pascalabcnet/TestSamples/PythonABC_Samples/py_test1.py

9 lines
85 B
Python
Raw Normal View History

2015-05-14 22:35:07 +03:00
python
# while sample
i = 1
while i<10:
python
print(i)
i=i+1
nohtyp
nohtyp