In [29]:
howmuchIwillmake = 0.01
intotal = 0.01
print("How much I made today {} and in total I made {}".format(howmuchIwillmake, intotal))
for day in range(2, 32):
howmuchIwillmake *= 2
intotal += howmuchIwillmake
print("How much I made on day {} is ${:,}, and in total I made ${:,}.".format(day, howmuchIwillmake, round(intotal ,2)))
How much I made today 0.01 and in total I made 0.01 How much I made on day 2 is $0.02, and in total I made $0.03. How much I made on day 3 is $0.04, and in total I made $0.07. How much I made on day 4 is $0.08, and in total I made $0.15. How much I made on day 5 is $0.16, and in total I made $0.31. How much I made on day 6 is $0.32, and in total I made $0.63. How much I made on day 7 is $0.64, and in total I made $1.27. How much I made on day 8 is $1.28, and in total I made $2.55. How much I made on day 9 is $2.56, and in total I made $5.11. How much I made on day 10 is $5.12, and in total I made $10.23. How much I made on day 11 is $10.24, and in total I made $20.47. How much I made on day 12 is $20.48, and in total I made $40.95. How much I made on day 13 is $40.96, and in total I made $81.91. How much I made on day 14 is $81.92, and in total I made $163.83. How much I made on day 15 is $163.84, and in total I made $327.67. How much I made on day 16 is $327.68, and in total I made $655.35. How much I made on day 17 is $655.36, and in total I made $1,310.71. How much I made on day 18 is $1,310.72, and in total I made $2,621.43. How much I made on day 19 is $2,621.44, and in total I made $5,242.87. How much I made on day 20 is $5,242.88, and in total I made $10,485.75. How much I made on day 21 is $10,485.76, and in total I made $20,971.51. How much I made on day 22 is $20,971.52, and in total I made $41,943.03. How much I made on day 23 is $41,943.04, and in total I made $83,886.07. How much I made on day 24 is $83,886.08, and in total I made $167,772.15. How much I made on day 25 is $167,772.16, and in total I made $335,544.31. How much I made on day 26 is $335,544.32, and in total I made $671,088.63. How much I made on day 27 is $671,088.64, and in total I made $1,342,177.27. How much I made on day 28 is $1,342,177.28, and in total I made $2,684,354.55. How much I made on day 29 is $2,684,354.56, and in total I made $5,368,709.11. How much I made on day 30 is $5,368,709.12, and in total I made $10,737,418.23. How much I made on day 31 is $10,737,418.24, and in total I made $21,474,836.47.