Get your own Python server Result Size: 625 x 565
x
 
import math
x = input("Enter a number:")
#find the square root of the number:
y = math.sqrt(float(x))
print(f"The square root of {x} is {y}")
Enter a number: