Math, asked by ayushmgupta2007, 9 months ago

What is Half square root in Python 3

Answers

Answered by arnavwali8
1

Answer:

The Python ** operator is used for calculating the power of a number. In this case, 5 squared, or 5 to the power of 2, is 25.

The square root, then, is the number n, which when multiplied by itself yields the square, x.

In this example, n, the square root, is 5.

Step-by-step explanation:

>>> n = 5

>>> x = n ** 2

>>> x

25

hope it helps mark me in the brainliest

Similar questions