Posts by Elder Trevisan • 11 points
1 post
-
0
votes2
answers232
viewsA: Python-docx module error in Windows
Try to put it like that on line 93: f = open(arquivo,'w') or instead of w, place r+. For the w is to create a new file or overwrite it, and the r+ is for reading and entering data.…