diff --git a/new b/new new file mode 100644 index 0000000..bcfbaf7 --- /dev/null +++ b/new @@ -0,0 +1,11 @@ +# Python Program to calculate the square root + +# Note: change this value for a different result +num = 10 + +# 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)) + diff --git a/new.py b/new.py new file mode 100644 index 0000000..e69de29