This content got low rating by people.

Python Program to Find the Square Root

# Python Program to calculate the square root

# Note: change this value for a different result
num = 8 

# To take the input from the user
#num = float(input('Enter a number: '))

num_sqrt = num ** 0.5
print('The square root of %0.3f is %0.3f'%(num ,num_sqrt))
H2
H3
H4
3 columns
2 columns
1 column
Join the conversation now