9 lines
85 B
Python
9 lines
85 B
Python
python
|
|
# while sample
|
|
i = 1
|
|
while i<10:
|
|
python
|
|
print(i)
|
|
i=i+1
|
|
nohtyp
|
|
nohtyp |