47.4k views
3 votes
Technically a coding question utilizing python how would one calculate a square root

User AndroLife
by
5.3k points

1 Answer

5 votes

Answer:

import math

math.sqrt( x )

Step-by-step explanation:

The basic code that can be written to calculate the square root of a number is as follows

import math

math.sqrt( x )

User Leroyse
by
5.9k points