Python - 7

Python - 7: Loops

Loops repeat code multiple times. This saves time and makes programs more powerful.

✦ Python Editor
▶ Output

👀 Show Example Solution
for i in range(3):
    print("Python is fun!")

for number in range(10):
    print(number)