Appearance
n**0.5
def ctx(n): for i in range(0,n): print(i) n = n + 1 if n == 30: return 'finish' ctx(5)