# python program to find the square root of the number num = int(input("enter a number:")) num_sqrt = num ** 0.5 print("the sqare root of {0} is {1}".format(num, num_sqrt))