Computer Science, asked by aparajetha6445, 8 months ago

What will be the output of this Python command? #print(5 + 2) 1 point

Answers

Answered by Kusumavenki
3

Answer

>>> 5 ** 2  # 5 squared

25

>>> 2 ** 7  # 2 to the power of 7

128

Explanation:

Similar questions