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

Project 01: Python Code for Music Recommendation with Explanation

Iris Flowers Classification ML Project with Code