I was wondering if anyone could help me figure out how to do percentage addition in Python? I want to add exponential percentage growth to a given number i.e. 3% addition to 150 = 154.5, and then 3% to the new value but in a continuous string an x number of times.
like so:
1.) 150
2.) 154.5
3.) 159.135
4.) 163.90905
5.) 168.8263215
6.) 173.891111145
7.) 179.10784447935
8.) 184.4810798137305
9.) 190.0155122081424
10.) 195.7159775743867
Would love to be able to do this for 200 times and print in one go.