0
how does an Exponentiation operator ** work in python?
I can't understand this one:(
4 Answers
+ 3
In C language it is worked by pow() function in python it works with ** exponential operator
Eg. pow(2,3) =8 in c
2**3=8 in python
P. S please try to describe about language too with appropriate tags
+ 1
# your code goes here
dolarr = 0.01*(2**30)
print(dolarr)
This is write answer
0
thanks