racine carrée python
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
Crazy Crab
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
a = int(input("enter a real number: "))
sqrt = a**(1/2)
print("the square root of ",a ,"is",sqrt)
def square_root(num):
return num**0.5
#prints out 4
print(square_root(16))
#prints out 10
print(square_root(100))
distance = 100
distance = distance**0.5
# to the power of a half square roots it