Computer Science, asked by anshuman6686, 6 months ago

differentiate between * and ** operators​

Answers

Answered by izuku57
1

Explanation:

THANK you

hope it's helpful to you

Attachments:
Answered by Jasleen0599
0

Differentiate between * and ** operators​

  • The multiplier operator is one *.
  • The exponential power operator is double **.
  • The "*=" operator combines the "*" and "=" operators. This operator multiplies the left variable's current value by the right variable's value before assigning the result to the left variable.
  • In Python, the ** operator is used to raise the value on the left to the exponent's power on the right. That is, 5 is raised to the third power in the statement 5 ** 3. This formula is sometimes written as 53 in math, however what is actually happening is that 5 is being multiplied by itself three times.

#SPJ3

Similar questions