私は次のことを行う簡単なプログラムを持っています.
プログラムは正常に動作します。問題は 1 つだけです。4 コア プロセッサで 30 ~ 50% のプロセッサ時間を消費します。問題はどこだ?
import pyautogui
import ctypes
pyautogui.FAILSAFE = True
def get_space_state():
hllDll = ctypes.WinDLL ("User32.dll")
VK_SPACE = 0x20
return hllDll.GetKeyState(VK_SPACE)
while True:
if get_space_state() == -127 or get_space_state() == -128:
print ("yes")
pyautogui.click(clicks=40 , interval=0.01)
どうもありがとう。