Hi,
I am having the problem in nested list.
Here is the code :
data1= [['Contacts',company.contacts.count() ],
['Notes', company.notes.count()],
['Met by', ],
['Industry', industry],
['Financial Investors', '31']]
for item in metlist:
data1[2].insert(1,item)
Basically I am trying to insert the value for Met by in [ 'Met by', metlist->value]
I am getting list index out of range error.
Can any one help me out.
Thanks