0
how to solve python problem about exponentiation?
5 Réponses
+ 3
Read and Analyze the problem. Review the lessons. Post in Q&A when you already have your attempt so we may help you.
Just a hint:
- the exponent represents the number of days
Just understand and comprehend the problem and you will get it eventually.
Happy Coding!
0
Thank you🥰
0
happy codingg ahh
0
res = 0.01*(2**30)
print(res)
0
The sololean formula is 0.01*(2**n) here n is the total date but the correct mathematical formula is "a((r^n)-1)/(r-1)" Geometric series.