The specific error in your code, is that when cnto == len(ttllst), then
doing ttllst[cnto] will give you that error.

The list is indexed from 0 to len-1, which means that doing
list[len(list)] will give that error.

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

Reply via email to