Extracting text

Hello guys. I am in need of some help. I have a PDF file that contains 100 tests (they are divided into 3 parts: A, B and C). How can I create another PDF that contains only the A part from each test? I found some tutorials with Python, but the thing is I don’t really know how to use it.
Thank you in advance :slight_smile: I’m sorry for the grammatical mistakes :slight_smile: #stillLearning

Can you convert your PDF into a csv file ? (I don’t think)
Coz then you can extract the required data as a dataframe (a data structure in pandas library) and later save data from this dataframe containing the required information into another csv file.
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_csv.html
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_csv.html
I hope that this helps