""" Exponential growth model without arrays """ t = 0 N = 2 r = 0.5 for i in range( 10 ): N = N + r * N t = t + 1 print( f"At time {t}, N is {N}" )