Jak wydrukować pętlę w tej samej linii w Python

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