Lesson 1, Topic 5
In Progress

Introduction To Python Loops

Lesson Progress
0% Complete

Code of the Lesson

print('Learning Python is fun')
print('Learning Python is fun')
print('Learning Python is fun')
print('Learning Python is fun')
print('Learning Python is fun')
for number in range(0, 5):
    print('Learning Python is fun')
for number in range(0, 5):
    print(number)
for number in range(3, 10):
    print(number)
for i in range(0, 3):
    print('Cinderella')
print('Little Red Riding Hood')

for i in range(0, 3):
    print('Cinderella')
    print('Little Red Riding Hood')

for i in range(0, 3):
    print(i)
    print('Cinderella')
    print('Little Red Riding Hood')