How do I delete a "column" from a list of lists?
Given:
L = [
     ["a","b","C","d"],
     [ 1,  2,  3,  4 ],
     ["w","x","y","z"]
    ]
I would like to delete "column" 2 to get:
L = [
     ["a","b","d"],
     [ 1,  2,  4 ],
     ["w","x","z"]
    ]
Is there a slice or del method that will do that? Something like:
del L[:][2]
 
     
     
     
     
     
     
     
     
     
     
    