playpythonpy
Python for Kids
Thursday, 4 February 2016
While
#Playing with while
#while 1
a=0
while a<1:
print ('.............................................')
#while 2
a=1
while a <1000:
a=a+1
print (a)
#while3
a=1
while a <1000:
a=a-1
print (a)
Newer Post
Older Post
Home