task:
return a list with the numbers 1 to 10 (max 38 characters)
result = [i for i in range(1, 11)] while len(result) < 11:
result = result[:9]
result:
you can stop a loop at any time in python with a certain keyword