In math, Exponentiation refers to the operation of raising one quantity to the power of another. See the program running the exponentiation below.
The code is given below:
number_of_days = 30
amount_after_30days = 0.01 * (2 ** number_of_days)
# print the amount
print(amount_after_30days)
Learn more about exponentiation at;
https://brainly.com/question/11975096
#SPJ1