+ 1
I didn't understand this !!!! what is ** ???
6 Respuestas
+ 4
** is in python the operator for exponentiation.
3**2 = 9 = 3*3
2**5 = 2*2*2*2*2 = 32
0
it's mean (power to) as example :
2**3 = (2 to power 3) = 2*2*2 = 8
0
** power
0
5**2=5²=5x5=25
...enjoy.
- 1
**exponentiation
- 1
* is equal ×