“Cronometer Python” Kode Jawaban

Cronometer Python

import time

now = time.time()
future = now + 10
while time.time() < future:
    # do stuff
    pass
Disgusted Duck

Cronometer Python

while True:
    if time.time() > future:
        break
    # do other stuff
Disgusted Duck

Jawaban yang mirip dengan “Cronometer Python”

Pertanyaan yang mirip dengan “Cronometer Python”

Lebih banyak jawaban terkait untuk “Cronometer Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya