“Time.sleep () Python” Ответ

Функция ожидания Python

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

Питон Сон

import time

print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
Batman

Сон на питоне 3

#!/usr/bin/python3
import time

print ("Start : %s" % time.ctime())
time.sleep( 5 )
print ("End : %s" % time.ctime())

# Start : Mon Feb 15 12:08:42 2016
# End : Mon Feb 15 12:08:47 2016
Rocku0

python ждать x секунд

import time
x = 1 # Put in whatever seconds you want it to wait
time.sleep(x) 
Random boi

Питон Сон

import time

start = time.time()
print("sleeping...")
time.sleep(0.5)
print("woke up...")
elapsed_time = time.time() - start

print("elapsed time:", elapsed_time * 1000, "milliseconds")
Panicky Parrot

Time.sleep () Python

#sleep() is in seconds
import time
print("Before the sleep statement")
time.sleep(5) #wait 5 seconds
print("After the sleep statement")
HatersGonnaHate

Ответы похожие на “Time.sleep () Python”

Вопросы похожие на “Time.sleep () Python”

Больше похожих ответов на “Time.sleep () Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования