Rajesh SinghJun 16, 20211 min readPython program to find square root of given numberProgram: n=float(input("Enter a number: ")) a=n**.5 print("The square roots of given number is ", a) Output: Enter a number: 16 The...