- 3
Help me in Python 3 Exponentiation
I need code to echo the output of 10737418.24
2 Respostas
+ 5
You mean this?
print(10737418.24)
What do you want to exponentiate? Maybe this?
print(10737418.24 ** 2)
+ 1
# your code goes here
days = 30
pennys = 0.01
double = pennys*(2**days)
print(double)
Use this man