10 lines
79 B
Python
10 lines
79 B
Python
#4.1.2
|
|
n=1
|
|
while n<5:
|
|
print(n)
|
|
n=n+1
|
|
|
|
for i in range(5):
|
|
print(i)
|
|
|