List the instrumental investigations from here
python3 -c " import pdfplumber path = '/home/daytona/workspace/attachments/598795ef-ae26-40ac-898c-ece4a5c028fe/lesson 11 Medical Investigations in Gynecological patients-1.pdf' with pdfplumber.open(path) as pdf: for i, page in enumerate(pdf.pages): text = page.extract_text() if text: print(f'--- PAGE {i+1} ---') print(text) "