cara mencetak untuk loop di baris yang sama di python

# A small example using range function
for i in range(1, 11):
  print(i, end="")
Homely Hare