Could you please help me understand why python-docx is unable to return the actual text inside the table cell (#CH2KEY#), from the docx file below?
This is how I do create a table in a docx document currently. doc = docx.Document() tab = doc.add_table(rows=300, cols=5) So the table object is "connected" to its parent document. Is there a way to ...