Let's say I have two lists:
listOne = ['a','b','c']
listTwo = ['b','c','c']
What would be the most pythonic way of deleting a specific element from both lists?
Easily done with a for loop, i.e:
for li in (listOne, listTwo):
li.remove('c')
Is there a way to do something like this?
[listOne, listTwo].remove('c')