I have the following code which is a dictionary with lists inside. What I want to do is erase a certain element from all the lists.
For example: delete everything in position 2 of each list (bike, 2 and C).
dicc={}
dicc['lista1']=['coche', 'moto', 'bici', 'avion', 'barco', 'patin']
dicc['lista2']=['0', '1', '2', '3', '4', '5']
dicc['lista3']=['A', 'B', 'C', 'D', 'E', 'F']
Greetings and thanks