Answers for "modern way to time sleep python"

7

how to use python to sleep if the user is not using the system

import time
print("This is how to pause a program")
time.sleep(5)
print("Did you saw that i slept for 5 seconds")
Posted by: Guest on July-27-2021
3

how to use python to sleep if the user is not using the system

import mouse
import time
import os
import pyttsx3
while True:
    before_sleep = mouse.get_position()
    time.sleep(600)
    after_sleep = mouse.get_position()
    if before_sleep == after_sleep:
        pyttsx3.speak("Going to shut down")
        os.system("shutdown /s /t 1")
Posted by: Guest on August-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language