+ 1
How to print first n number in a single line without and with using string ?
2 Answers
+ 3
I assume you will always recieve a number as input, and you are trying to print the left digit
https://code.sololearn.com/cbw8U9pen0Q3/?ref=app
+ 2
n = 10
print(*(list(range(n))))