2D List

Fasihul Kabir rrockz09 at yahoo.com
Mon Oct 11 12:24:10 EDT 2010


a = [0]*5
 for i in range(0, 4):
    for j in range(0, i):
        a[i].append(j)

why the above codes show the following error. and how to overcome it.

Traceback (most recent call last):
  File "<pyshell#10>", line 3, in <module>
    a[i].append(j)
AttributeError: 'int' object has no attribute 'append'



      
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20101011/58429365/attachment.html>


More information about the Python-list mailing list