Instagram
youtube
Facebook
Twitter

Calculate the Square Root of a Number

A Python program to compute the square root of a given number using exponentiation.

Code Explanation in Points:

  1. Taking User Input:
     
    • input("Enter a number: ") asks the user to enter a number.
       
    • float() converts the input into a floating-point number and stores it in num.
       
  2. Calculating the Square Root:
     
    • square_root = num ** 0.5 calculates the square root using exponentiation (** 0.5).
  3. Displaying the Result:
     
    • print("Square root of", num, "is:", square_root) prints the calculated square root.

 

Program:

num = float(input("Enter a number: "))

square_root = num ** 0.5

print("Square root of", num, "is:", square_root)