Python Program to Find the Square Root

Python Program to Find the Square Root


#  take the input from the user #num = float(input('Enter a number: '))  num_sqrt = num ** 0.5 print(num_sqrt)