I just filtered some data and now I have a .csv file, but I just noticed that I need to select only the rows that have the minimun price:
example:
ORIGIN | DESTINA. | PRICE
____________________________
BOG | MAD | 1500
BOG | MAD | 750
BOG | MAD | 1250
BOG | MAD | 1350
BOG | MIA | 450
So in this example, what I would like to get is only the third AND sixth row:
ORIGIN | DESTINA. | PRICE
____________________________
BOG | MAD | 750
BOG | MIA | 450
Using python, how can I get this final table?