Header Ads

Responsive Ads Here

While loop in Python

 While loop in Python



#  "Xtra Coding"  -  10times


i = 1
while i <= 100:
    print(i)
    i += 1

Powered by Blogger.