1. Home
  2. /
  3. Blog
  4. /
  5. Python Program to Find the Square Root
Python

Python Program to Find the Square Root

September 27, 2022 1 min read 2,235
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)
Share:
Read next

Related articles