cara membaca file docx di python

import docx2txt
my_text = docx2txt.process("test.docx")
print(my_text)
Frantic Ferret