Write a generator function generate sqr() that displays the square roots of numbers from 100 to n where n is passed as an argument.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
import math
def generatesq (n) :
for i in range (100, n) :
yield (math, sqrt (i))