Simple if-else question

Sandy dksreddy at gmail.com
Tue Sep 29 11:50:46 EDT 2009


Hi all,
A simple and silly if-else question.
I saw some code that has the following structure. My question is why
else is used there though removing else
has the same result. More important, is it not syntactically wrong :-(

for i in xrange(8):
    if i < 4:
        print i
else:
    print i

Cheers,
dksr



More information about the Python-list mailing list