Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Python FOR LOOPS

Name: Anonymous 2008-04-23 15:44

What the fuck is with Python's for loops.

What's the difference between:

for i in list[0]:

for i in list[0:]:

for i in list[:0]:

Name: Anonymous 2008-04-23 15:52

>>1
The first one runs the for loop once, with i set to list[0], the second one runs the loop for each element of list, and the third one does nothing.

To see why, enter list[0], list[0:] and list[:0] in the interpreter.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List