2 lines
76 B
Python
2 lines
76 B
Python
|
|
[print(str(i+1) + ", ",end='') if i < 9 else print(i+1) for i in range(10)]
|