![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: Confused: appending to a list
From: <adam.bachman@gmail.com>
Date: Thu Mar 23 2006 - 17:52:35 CET
You're wanting it to stop when the len(list) == 4, right? The easiest
while len(list) != 4:
but that could get you into trouble later on. The problem with the
# Start an empty list
I hope this gives you some ideas.
|