Odpowiedzi:
from time import sleep
sleep(0.05)
Pamiętaj, że jeśli polegasz na śnie trwającym dokładnie 50 ms, nie dostaniesz tego. Chodzi o to.
time.sleep(secs)
] śpi przynajmniej secs
” od Python 3.5 zgodnie z dokumentacją.
może również używać pyautogui jako
import pyautogui
pyautogui._autoPause(0.05,False)
jeśli pierwszy nie jest żaden, to zatrzyma się na pierwszy arg drugi, w tym przykładzie: 0,05 sek
jeśli pierwszy to None, a drugi argument to True, to przejdzie w tryb uśpienia w celu ustawienia globalnej pauzy, która jest ustawiona za pomocą
pyautogui.PAUSE = int
jeśli zastanawiasz się nad przyczyną, zobacz kod źródłowy:
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
tego niż tego, ale jeśli chcesz, aby Twój program był czystym autopygui, może to być sposób.