“Comment mettre en pause un script python” Réponses codées

Comment faire une pause du code pendant un certain temps dans 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

pause python

import os
os.system("pause")
Poor Pintail

Pause Programme Python

# To delay excusion use the time library
import time

time.sleep(secs)
The Rambling Lank

Comment mettre en pause un script python

import time

time.sleep(amount of seconds you want to pause the script for)


Example : 
  
import time
secondstogo = input("How much seconds do you want to wait? : ")
print(f"waiting {secondstogo} seconds")
time.sleep(secondstogo)
Vast Vicuña

Réponses similaires à “Comment mettre en pause un script python”

Questions similaires à “Comment mettre en pause un script python”

Plus de réponses similaires à “Comment mettre en pause un script python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code