0
I don't understand the part where you raise one number to the power of the other
exponentiation
5 odpowiedzi
+ 6
2**3 is 2*2*2
3**4 is 3*3*3*3
6**8 is 6*6*6*6*6*6*6*6
42**2 is 42*42
Clear enough?
+ 1
raising a number in Python is very easy
for example 4 raised to power 2
the code for this is 4**2 which returns the integer 16
0
what question is?
0
raising a number in Python is very easy
for example 4 raised to power 2
the code for this is 4**2 which returns the integer 16
0
thanks a lot guys
i appreciate