What is Half square root in Python 3
Answers
Answered by
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
Math,
4 months ago
Computer Science,
9 months ago
History,
9 months ago
Hindi,
1 year ago
Computer Science,
1 year ago