string_of_numbers.py (Source)

list_of_numbers = ''
for el in range(101):
    list_of_numbers += (str(el))
print(list_of_numbers)