回答:
ちょうど 50ミリ秒かかる睡眠に依存している場合、それは得られないことに注意してください。それだけです。
time.sleep(secs)
] は少なくとも スリープしている」というのは興味深いかもしれませんsecs
。
としてpyautoguiを使用することもできます
import pyautogui
pyautogui._autoPause(0.05,False)
firstがNoneでない場合、最初のarg秒待機します。この例では、0.05秒です。
最初がNoneで、2番目の引数がTrueの場合、次のように設定されたグローバル一時停止設定のためにスリープします
pyautogui.PAUSE = int
理由がわからない場合は、ソースコードを参照してください。
def _autoPause(pause, _pause):
"""If `pause` is not `None`, then sleep for `pause` seconds.
If `_pause` is `True`, then sleep for `PAUSE` seconds (the global pause setting).
This function is called at the end of all of PyAutoGUI's mouse and keyboard functions. Normally, `_pause`
is set to `True` to add a short sleep so that the user can engage the failsafe. By default, this sleep
is as long as `PAUSE` settings. However, this can be override by setting `pause`, in which case the sleep
is as long as `pause` seconds.
"""
if pause is not None:
time.sleep(pause)
elif _pause:
assert isinstance(PAUSE, int) or isinstance(PAUSE, float)
time.sleep(PAUSE)
time.sleep
ですが、プログラムを純粋なautopyguiにしたい場合は、これが1つの方法です。