답변:
정확히 50ms의 수면에 의존 하면 얻을 수 없습니다. 그것은 단지 그것에 관한 것입니다.
time.sleep(secs)
] 함수 가 적어도 잠자기 '라는 사실을 아는 것이 흥미로울 수 secs
있습니다.
pyautogui를 다음과 같이 사용할 수도 있습니다.
import pyautogui
pyautogui._autoPause(0.05,False)
first가 None이 아닌 경우 첫 번째 arg 초 동안 일시 중지됩니다 (이 예에서는 0.05 초).
first가 None이고 두 번째 arg가 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
것이 낫지 만, 프로그램을 순수한 오토 피구 이로 만들고 싶다면 이것이 방법이 될 수 있습니다.