Let's say I have a DataFrame that looks like this:
a  b  c  d  e  f  g  
1  2  3  4  5  6  7
4  3  7  1  6  9  4
8  9  0  2  4  2  1
How would I go about deleting every column besides a and b?
This would result in:
a  b
1  2
4  3
8  9
I would like a way to delete these using a simple line of code that says, delete all columns besides a and b, because let's say hypothetically I have 1000 columns of data.
Thank you.
 
     
     
     
     
     
     
     
     
    