dashboard
repositories
filestore
activity
search
login
python-kurs
/
mam-2025
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
implement polynomial
Hong-Phuc Bui
5 days ago
4c5ba07d9c2f044c179d3bfdd41a6f9f20691ac9
[python-kurs/mam-2025.git]
/
02-eingabe-ausgabe
/
demo-while.py
1
2
3
4
5
6
7
x = 0
while x > -1:
x = x + 1
print(x)
print(x)