Simple while loop

from math import *
I = 0
while(I <= 100):
           print(I, '\t\t', sqrt (I))
           I = I + 1
print("ready")

Comments

Popular Posts