“Comment arrêter Python pendant un certain temps à Python” Réponses codées

Comment arrêter Python pendant un certain temps à Python

#plz suscribe to my youtube channel --> 
#https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A

import time
print("This is how to pause a program")
time.sleep(5)
print("Did you saw that i slept for 5 seconds")
Programmer of empires

Comment arrêter Python pendant un certain temps à Python

now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Programmer of empires

Comment arrêter Python pendant un certain temps à Python

import time
How_long = 5
time.sleep(How_long)
print("Look I got printed after 5 seconds")
Programmer of empires

Comment arrêter Python pendant un certain temps à Python

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")
Programmer of empires

Réponses similaires à “Comment arrêter Python pendant un certain temps à Python”

Questions similaires à “Comment arrêter Python pendant un certain temps à Python”

Plus de réponses similaires à “Comment arrêter Python pendant un certain temps à Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code