-->

How to send print job to printer in python

2019-04-22 21:39发布

问题:

I used Tkinter to draw some lines in python and I would like to print that picture to usb connected and/or network printer in Windows. How should I do that?

回答1:

try this! It uses os module to start the file in the default printer!

import os

os.startfile("YourDocument", "print")