About 25,100,000 results
Open links in new tab
  1. How do I calculate square root in Python? - Stack Overflow

    Jan 20, 2022 · The power operator (**) or the built-in pow() function can also be used to calculate a square root. Mathematically speaking, the square root of a equals a to the power of 1/2.

  2. 4 Methods to Calculate Square Root in Python - AskPython

    Jul 6, 2021 · In this tutorial, we have learned the different ways to calculate the square root of numbers in Python. We have also learned how to use Python functions like math.sqrt(), …

  3. math.pow() in Python - GeeksforGeeks

    Apr 21, 2025 · In Python, math.pow () is a function that helps you calculate the power of a number. It takes two numbers as input: the base and the exponent. It returns the base raised …

  4. How to find Square Root in Python? - Edureka

    Nov 27, 2024 · To calculate Square roots in Python, you will need to import the math module. This module consists of built-in methods namely sqrt () and pow () using which you can calculate …

  5. The Python Square Root Function

    You can use both math.sqrt () and pow () to find a square root in Python. While both will return the same result for non-negative numbers, math.sqrt () is more readable and specifically designed …

    Missing:

    • Power Root

    Must include:

  6. Python Square Root: Real and Complex – LearnDataSci

    Using the exponentiation operator ** is an easy way of getting the square root of a number. This operator raises the first operand to the power of the second operand. To get square root, you …

  7. Python Program to Find the Square Root

    In this program, you'll learn to find the square root of a number using exponent operator and cmath module.

    Missing:

    • Power Root

    Must include:

  8. Calculate Square Root of a Number in Python - Stack Abuse

    May 16, 2023 · In this guide, you'll learn how to calculate the square root of a number in Python, using math.sqrt (), np.sqrt (), pow (), math.pow () and the ** operator, with a performance …

    Missing:

    • Power Root

    Must include:

  9. Python Find Square Root of Number – PYnative

    Mar 27, 2025 · Using the Exponentiation Operator (**) The ** operator in Python is the exponentiation operator, used to raise a number to a power (e.g., a ** b computes a^b). This is …

  10. How to calculate the square root in Python? • TradingCode

    Dec 22, 2019 · Python can calculate the square root of a number in three ways: math.sqrt (), pow (), or **. This article explains each with easy-to-follow code.

    Missing:

    • Power Root

    Must include:

  11. Some results have been removed
Refresh