The Square Root of the given number



The Square Root of the given number

 The Square Root of the given number
print('\t\t\t\t Square Root')

a = input("Enter a number = ")
sq = float(a) ** 0.5
print("\n The Square Root of the number is = ", sq)

Comments

Popular posts from this blog

Addition of two numbers in python