पायथन में संख्याओं को घात तक बढ़ाने के लिए प्रयुक्त ऑपरेटर का नाम बताइए?
Name the operator used in Python to raise numbersto the power?
A
itwise Operators
B
Exponentiation Operator
C
Identify Operator
D
Membership Operators
Explanation
The operator used in Python to raise numbers to a power is the Exponentiation Operator.
In Python, this operator is represented by a double asterisk:
**.Correct Answer: B) Exponentiation Operator