Please enable JavaScript in your browser!
Domů
Procházet
Nápověda
Přihlásit se
andreiat
/
code_snippets
zrcadlo
https://github.com/CoreyMSchafer/code_snippets.git
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Wiki
Strom:
c6969cfffc
Větve
Značky
master
code_snippets
/
Python-Loops
/
intro.py
intro.py
77 B
Historie
Surový
1
2
3
4
5
6
7
8
9
x = 0
while True:
# if x == 5:
# break
print(x)
x += 1