summaryrefslogtreecommitdiff
path: root/progs/a881.py
blob: 5fae891d0640dd5c6076478088dd5fffcf140a51 (plain)
1
2
3
4
import math
def sqrt_root(num):
 sqrt_root = math.pow(num, 0.5)
 return sqrt_root