Suppose I have an excel file excel_file.xlsx
and i want to send it to my printer using Python so I use:
import os
os.startfile('path/to/file','print')
My problem is that this only prints the first sheet of the excel workbook but i want all the sheets printed. Is there any way to print the entire workbook?
Also, I used Openpyxl
to create the file, but it doesn't seem to have any option to select the number of sheets for printing.
Any help would be greatly appreciated.