On 2008-07-02, Alexnb <[EMAIL PROTECTED]> wrote:
> I have no idea what "list assignment index out of range means?!?!

You are assigning a value to a non-existing list element, as in

>>> x = [1]
>>> x[2] = 4
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
  IndexError: list assignment index out of range


Albert
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to