Python script that prints all word files in directory prints the documents out of order
Advertisements I have a short Python script that looks in the directory I point it to and prints all of the files in it (Microsoft Word .docx format). The entire script is below: import os from pathlib import Path #set path where the files to print are my_path = Path(__file__).parent / ‘OUTPUT’ string_path = str(my_path)… Read More Python script that prints all word files in directory prints the documents out of order