जवाबों:
ध्यान दें कि यदि आप नींद पर भरोसा करते हैं तो बिल्कुल 50 एमएस लें, आपको वह नहीं मिलेगा। यह सिर्फ इसके बारे में होगा।
time.sleep(secs)
] कम से कम सोता है secs
।'
import time
time.sleep(50 / 1000)
from __future__ import division
उस गोत्र को खत्म करना।
के रूप में भी pyutogui का उपयोग कर सकते हैं
import pyautogui
pyautogui._autoPause(0.05,False)
यदि पहले कोई नहीं है, तो यह पहले आर्ग सेकंड के लिए विराम देगा, इस उदाहरण में: 0.05 सेकंड
यदि पहला कोई नहीं है, और दूसरा arg ट्रू है, तो यह ग्लोबल पॉज़ सेटिंग के लिए सोएगा जो इसके साथ सेट है
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
तो बेहतर है इस का उपयोग करें, लेकिन अगर आप चाहते हैं कि आपका कार्यक्रम शुद्ध रूप से हो, तो यह एक तरीका हो सकता है।