python-radionica/Cas3/od_0_do_100.py

16 lines
172 B
Python
Executable File

# Sa while petljom
broj = 0
while (broj <= 100):
print(broj)
broj += 1
input()
# Sa for petljom
for broj in range(101):
print(broj)
input()