How to calculate the square root of a number in Python

3 Answers

0 votes
num = 9

sqrt = num ** 0.5

print('The square root of %0.2f is %0.2f' % (num, sqrt))

'''
run:

The square root of 9.00 is 3.00

'''

 



answered May 26, 2017 by avibootz
0 votes
num = 10

sqrt = num ** 0.5

print('The square root of %0.2f is %0.3f' % (num, sqrt))

'''
run:

The square root of 10.00 is 3.162

'''

 



answered May 26, 2017 by avibootz
0 votes
import math

n = 16

print(math.sqrt(n))


'''
run:

4.0

'''

 



answered Sep 14, 2018 by avibootz
...