1#Run this code in the shell - do not run this as a .py file.
2>>> import math
3#On a different line type the following:
4>>> math.sqrt(YourNumberHere)
5#You may replace YourNumberHere with any number.
1def square_root(num):
2 return num**0.5
3#prints out 4
4print(square_root(16))
5#prints out 10
6print(square_root(100))