

InterviewSolution
Saved Bookmarks
1. |
Which is the correct operator for power(x^y)?(a) X^y(b) X**y(c) X^^y(d) None of the mentioned |
Answer» Right choice is (b) X**y To explain I would say: In python, power operator is x**y i.e. 2**3=8. |
|