1.

What is Half square root in Python 3

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 25hope it helps mark me in the brainliest



Discussion

No Comment Found