python squre root 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
x = 9
y = x ** 0.5
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
x = 9
y = x ** 0.5