how to tell python to do radical from input code example
Example 1: python square root
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
Example 2: square root python 3
import math
print(math.sqrt(589485))
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
import math
print(math.sqrt(589485))