I\'m working with a csv file that presents multiple headers, all are repeated like in this example:
1 2 3 4
0 POSITION_T P
past_data=pd.read_csv("book.csv")
past_data = past_data[past_data.LAT.astype(str).str.contains('LAT') == False]
print(past_data)