About 6,700,000 results
Open links in new tab
  1. Find Square Root Of Given Number – Python | GeeksforGeeks

    Feb 24, 2025 · Given an integer X, find its square root. If X is not a perfect square, then return floor (√x). For example, if X = 11, the output should be 3, as it is the largest integer less than …

  2. 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.

  3. The Python Square Root Function

    The Python square root function, sqrt(), is part of the math module and is used to calculate the square root of a given number. To use it, you import the math module and call math.sqrt() with …

  4. Python Program For Square Root Of A Number (With Code) - Python

    In this article, we learned how to write a Python program to calculate the square root of a number. By using the sqrt() function from the math module, we can easily obtain the square root value. …

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

    Jul 6, 2021 · Let’s discuss some well-known methods in Python to calculate the square root of numbers. 1. Calculate square root using the exponent operator. In this method, we will define …

  6. How do I calculate square root in Python? - Stack Overflow

    Jan 20, 2022 · It takes any type that can be converted to float (which includes int) and returns a float. The power operator (**) or the built-in pow() function can also be used to calculate a …

  7. How to Find Square Root in Python? – 3 Simple Ways - The …

    In this tutorial, I will show you three different ways to find square root in python with program examples. In mathematics, a square root is a number when multiplied by itself gives the …

  8. Square Root in Python - Python Guides

    Oct 2, 2024 · Learn how to calculate the square root in Python using the math.sqrt() function. This guide covers syntax, examples, and practical scenarios for efficient square root calculations.

  9. Python Program to find Square root of a Number - Tutorial …

    Write a Python Program to find the Square root of a Number using the sqrt and pow functions with an example. This Python program allows the user to enter any integer value. Next, this …

  10. How to calculate square root in Python (with examples)

    Mar 18, 2024 · One of the simplest ways to calculate the square root of a number in Python is by using the exponentiation operator (**). This operator allows you to raise a number to a specific …

  11. Some results have been removed
Refresh