+ 3
Can you explain what exponential mean but in simpler terms
please
13 Réponses
+ 9
Here are some examples:
2**4 = 2*2*2*2 = 16
5**3 = 5*5*5= 125
+ 6
Exponentiation
Besides addition, subtraction, multiplication, and division, Python also supports exponentiation, which is the raising of one number to the power of another. This operation is performed using two asterisks.
>>> 2**5
32
>>> 9 ** (1/2)
3.0
PLEASE ALSO READ COMMENTS SECTION OF THIS PAGE(link is given below), THAT WILL HELP TO UNDERSTAND.
https://www.sololearn.com/learn/Python/2273/
+ 6
Hey there 😃
When we say exponential, we are saying that we multiply a number multiple times.
2**2 is saying multiply 2 twice.
3**2 is saying multiply 3 twice.
2**12 is saying multiply 2 twelve times.
And so on...
base ** exponent
Multiply the <base> <exponent> number of times.
Hope that helps you 😃
+ 6
Eliakim Ramos, I would suggest that you tske a look at
https://www.sololearn.com/discuss/1777685/?ref=app
+ 2
Eliakim Ramos
// is the floor division symbol.
5 // 2 means how many 2's can you get in 5.
There are two 2's in 5.
Therefore, 5 // 2 = 2.
+ 2
9**(1/2) means the square root of 9, which is 3.
+ 1
guys and girls thanks for the help
+ 1
What happen with example: 5//2 ??
+ 1
Okay I understand that 3 **3 means 3x3x3 but what does 9** (1/2) means ?
+ 1
Raj
9** (1/2) means
9 to the power of (1/2) you will get 3
0
Thanks Edwin Pratt and Oluwatosin Odubanjo. Now I understand! :)
0
tf is this
0
Simply put it means multiplying the number by itself. How many times you do that depends on the exponent.