I have a nested list that I would like to delete rows after it has finished with them. i tried using enumerating to pass in the index of the row to delete.
nlist = [['Chris', 'Davids', 21], ['Rob', 'Croft', 26]]
for i, v in enumerate(nlist):
if v[0] == 'Chris':
del v[i]