Печать 1 вещь неоднократно в 1 линейке Python

   for item in range(1,100):
        print(item, end='')
Ha Ngoc