Please enable JavaScript in your browser!
Начало
Каталог
Помощ
Вход
andreiat
/
code_snippets
огледало от
https://github.com/CoreyMSchafer/code_snippets.git
Наблюдаван
1
Харесван
0
Разклонения
0
Файлове
Задачи
0
Уики
ИН на ревизия:
c6969cfffc
Клонове
Маркери
master
code_snippets
/
Python-Loops
/
intro.py
intro.py
77 B
История
Директен файл
1
2
3
4
5
6
7
8
9
x = 0
while True:
# if x == 5:
# break
print(x)
x += 1