I'm very very new to coding so I apologize if my questioning format is incorrect. I'm pretty sure my problem is simple, I'm just not sure how to approach it.
I have a CSV file called SouthKoreaRoads2, and I used the following code.
import pandas as pd
import os
SouthKoreaRoads2 = pd.read_csv("SouthKoreaRoads2.csv")
As you can see, there are dates in the second column. I need to extract the rows with dates under 1975. How should I proceed with this? Many thanks in advance, and any and all suggestions are very welcome! :)