Как печатать для петли в той же линии в Python

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