“Sono Python 1 segundo” Respostas de código

Python espera 1 seg

import time
 
# Wait for 5 seconds
time.sleep(5)
 
# Wait for 300 milliseconds
# .3 can also be used
time.sleep(.300)
Blushing Bat

Sono Python 1 segundo

import time
while True:
    print("This prints once a minute.")
    time.sleep(60) # Delay for 1 minute (60 seconds).
Dangerous Dugong

Espere função python

import time
#Waits 1 second
time.sleep(1)
DatMADCoder

Sono Python 1 segundo

import time
time.sleep(1)
virgoBrain

Sono Python 1 segundo

/* test */
import time 
time.sleep(1)
Murat Demiralay

Sono Python 1 segundo

import time
def sleep_time(x): # x is amount of time
  time.sleep(x)
sleep_time(10) # in this case 10 seconds delay. 
Charming Civet

Respostas semelhantes a “Sono Python 1 segundo”

Perguntas semelhantes a “Sono Python 1 segundo”

Mais respostas relacionadas para “Sono Python 1 segundo” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código