python print numbers 1 to 10 in one line

Solutions on MaxInterview for python print numbers 1 to 10 in one line by the best coders in the world

showing results for - "python print numbers 1 to 10 in one line"
Amanda
22 Nov 2018
1for i in range(1, 11):
2  print(i, end=' ')