Post

@PythonPr Answer: C (125). Btw, many beginners confuse ** (exponentiation) with * (multiplication). If this were 5 * 3, the answer would be 15. But 5 ** 3 means 5 to the power of 3, which equals 125.
English

@PythonPr The ** operator in Python is used for exponentiation, which means it raises the first number to the power of the second number.
In the given code:
x is assigned the value 5.
y is assigned the value 3.
print(x ** y) calculates xy, or 5 ^ 3.
The calculation is 5×5×5=125.
English

@PythonPr C. 125. Because the double asterisk tells Python to multiply 5 x 5 x 5 = 125
English

@PythonPr Answer: 125
The double asterisk (**)in Python represents exponentiation, meaning "raise to the power of".
English

@PythonPr Answer: 125
Explanation: Exponential Operator ( ** ), x ** y this implies x to the power y so 5 to the power 3 gives 125.
English































