Thursday, 20 November 2014

Two different kinds of loop

For Loop - is run a certain number of times
for i in range(10)

While Loop - is run while a certain condition is true
while x > 20:

No comments:

Post a Comment