0
What Is Expenontiation...I Can't get it..
waht is the zist....How to Calculate it's ...Logoc
5 Réponses
+ 4
These are things people get taught in basic school.
2**2=2×2
2**4=2×2×2×2
3**3=3×3×3
its as simple as that..
+ 3
theres hardly any difference between how python does it and my previous explanation.
print(2**3)=>print(2×2×2)
https://www.sololearn.com/learn/Python/2273/
0
Plzz Give a ... Python Related Example
0
x**5 what will be the Ans.....With it's Description.
0
x**5 is x to the power of 5
result = x*x*x*x*x
do you see how x is present 5 times in this description?
Now can you calculate the answer, using your calculator?