Reading Word Files in Python May 15, 2018 Word python-docx from docx import Document filename= "filename.docx" # change this wordDoc = Document(filename) for table in wordDoc.tables: for row in table.rows: for cell in row.cells: print(cell.text)