5 lines
99 B
Python
5 lines
99 B
Python
for i in range(1, 11):
|
|
if i % 5 == 0:
|
|
print(i)
|
|
continue
|
|
print(i, end=', ')
|