python program that has a function that takes a number and find its double, half and square root. code example
Example: python get square root
import math
toSquare = 300
squared = math.sqrt(toSquare)
import math
toSquare = 300
squared = math.sqrt(toSquare)