2017-10-09 109 views
0

我試圖通過按「PRTSC」按鈕來抓取所有顯示器在Windows中的屏幕截圖。我的代碼需要儘可能精簡,這是我提出的最佳解決方案,但是,它不適用於需要python 3。我沒有發送其他擊鍵的問題。有任何想法嗎?Python 3 Win32 SendKeys {PrtSc}不工作

import win32com.client 

class SendKeys: 
    def __init__ (self): 
     self.win = win32com.client.Dispatch("WScript.Shell") 
    def send (self, data): 
     self.win.SendKeys(data, 0) 

sk = SendKeys() 
sk.send("{PrtSc}") 

回答