square root of 20 in python code example
Example 1: square root in python
def square_root(num):
return num**0.5
#prints out 4
print(square_root(16))
#prints out 10
print(square_root(100))
Example 2: how to square root in python
import math
answer = math.sqrt(16)