“Como pausar um script python” Respostas de código

Como pausar o código por algum tempo em 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

Pausa Python

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

Programa de pausa Python

# To delay excusion use the time library
import time

time.sleep(secs)
The Rambling Lank

Como pausar um 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

Respostas semelhantes a “Como pausar um script python”

Perguntas semelhantes a “Como pausar um script python”

Mais respostas relacionadas para “Como pausar um script python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código