I want to read the docx file in python. then extract numbers from that like:
with open('test.docx') as t:
text = t.readlines()
a = []
a.append([int(s) for s in text.split() if s.isdigit()])
a = [int(numeric_string) for numeric_string in a]
Thanks for any bits of help