0
Why is this code not working?
print(0.01(2**5))
6 Respuestas
+ 6
Because you missed an asterisk for multiplication "*" in the statement. It should be this way print(0.01*(2**5))
+ 1
I Already did that one
+ 1
Nothing
0
add a evaluation sign before the bracket example
print(0.01*(2**5))
0
Ayesha Ahmed so what's the problem now
0
num = float(0.01)
tell = 2**5
temp = num * tell
print(temp)
You didn't define your code and phyton won't understand. Hence the error message you got