0
Python problem
Can someone teach me exponentiation in very very simple terms, because the thing I thing is gonna be 27 is literally 52630.0183937 or something like that. Also I’m 12 so I’m very dumb that’s probably why
5 Antworten
+ 2
Hi Gfhcdy, in python, exponentiation is denoted as two *, so for example 3**3 would be 3 to the power of 3, and so is 3*3*3 which is 27.
Hope this helps
0
Here's an easy introduction to exponentiation:
https://www.mathsisfun.com/exponent.html
0
If you want 2⁴ in python do it as
2**4. Simple
- 1
Help problems