Skip to main content

Posts

Showing posts with the label #Write a Python program to enter any number and calculate its square root.

ads1

Python Basic , 11. Write a Python program to enter any number and calculate its square root.

  11. Write a Python program to enter any number and calculate its square root. import math no1 = int(input("Enter the number :-")) result = math.sqrt(no1) print("The square root of a number is :- ",result) Output :- 

ads2