Please enable JavaScript in your browser!
Sākums
Izpētīt
Palīdzība
Pierakstīties
andreiat
/
code_snippets
spogulis no
https://github.com/CoreyMSchafer/code_snippets.git
Vērot
1
Pievienot zvaigznīti
0
Atdalīts
0
Faili
Problēmas
0
Vikivietne
Koks:
c6969cfffc
Atzari
Tagi
master
code_snippets
/
Python-Loops
/
intro.py
intro.py
77 B
Vēsture
Neapstrādāts
1
2
3
4
5
6
7
8
9
x = 0
while True:
# if x == 5:
# break
print(x)
x += 1