Python program to find Square root of entered Number

 from math import *

n=int(input("Enter N : "))

for i in range(1,n+1):

    s=sqrt(i)

    print(i,"=",s)

Comments

Popular posts from this blog

Binary Search, Linear Search, Selection Sort and Bubble sort Python Menu Program

Housie/Tambola using Python with Tickets in PDF file

100% Working C++ Tambola/Housie Code with 90 Unique Numbers