5 lines
93 B
Python
5 lines
93 B
Python
for i in xrange(1,11):
|
|
if i % 5 == 0:
|
|
print i
|
|
continue
|
|
print i, ",",
|