0
a python code when tested on the ide works as desired but not working when tested on the app and the website?
hi guys. i am trying to do a challenge here, when i try to run the code here it cannot run. but when i try it on the ide it works totally fine as desired. i'm using vscode as an ide and python 3.10. is this issue happening because of the difference of the versions or why exactly. the code is x= input() y=int(x) print(0.01*(2**y))
4 Answers
+ 3
Great you sorted it out! Well done
+ 1
What error are you seeing?
Can't you take an int input directly?
x = int(input())
****edit****
I ran
x = int(input())
print(0.01*(2**x))
and it worked for me.
Maybe you can't change from a string to an integer so easily as your line y = int(x) and have to some proper casting.
+ 1
i discovered that i don't need to make input here, it's just calculating how much money to be after 30 days
0
i tried it like that it didn't work, so I tried different ways and I just put the last one