Python Programming Examples: Email, Encryption, Zip, HTTP, XML, FTP

Chilkat Software Components

Python For Loop

Back

Question:
How to do a for loop from i=0 to n-1 in Python?

Answer:
(see code below)

for i in range(5):
    print i

# Prints:

0
1
2
3
4