how to remove an element from a nested list?
- by kaki
if i have an nested list such as:
m=[[34,345,232],[23,343,342]]
if i write m.remove(345) it gives an error message saying element not in the list.
i want to know how to remove an element from the nested list,easily??