![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: comple list slices
From: <johnzenger@gmail.com>
Date: Tue Feb 28 2006 - 17:13:20 CET
Python lets you iterate through a list using an integer index, too,
i = 0
Do not try to do this with a for loop. In Python, "for i in xrange(5)"
|