Say I have a list that looks like this
f = [['person','place','item'],['george','home','phone']] how would I search through that list and delete a specific cell using f.remove() I have tried:
f.remove('item') which should remove 'item' but instead it returns the error
Exception has occurred: ValueError list.remove(x): x not in list
f[0].remove('item')csv.DictWriterthat writes a list of dicts to a CSV file.None.