python calculate square root

王林
Release: 2020-05-07 11:23:56
Original
15989 people have browsed it

python calculate square root

In python, there are many ways to find the square root of a number, which can be implemented using: built-in modules, expressions, built-in functions, etc.

1. Use the built-in module math

to find the square root of 16

import math
math.sqrt(16)
Copy after login

2. Use the expression method

Calculate the square root of 16

16 ** 0.5
Copy after login

3. Use the built-in function

Calculate the square root of 16

pow(16,0.5)
Copy after login

Recommended tutorial: python tutorial

The above is the detailed content of python calculate square root. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template