Mega Code Archive

 
Categories / Python Tutorial / Statement
 

Counting Loops

count = 0 while (count < 9):     print 'the index is:', count     count += 1