Find the square root of a number

 import math

num = 25

sqrt = math.sqrt(num)

print("The square root of", num, "is", sqrt)


Comments

Popular posts from this blog

Simple Python Program Code for Snake Game

Iris Flowers Classification ML Project with Code

Linear Regression Model for House Price Prediction in Python