“Python berhenti saat loop setelah waktu” Kode Jawaban

Python berhenti saat loop setelah waktu

import time
timeout = time.time() + 60*5   # 5 minutes from now
while True:
    test = 0
    if test == 5 or time.time() > timeout:
        break
    test = test - 1
JulesG10

cara mengakhiri loop tak terbatas pada waktu tertentu Python

import time

# timeout variable can be omitted, if you use specific value in the while condition
timeout = 300   # [seconds]

timeout_start = time.time()

while time.time() < timeout_start + timeout:
    test = 0
    if test == 5:
        break
    test -= 1
Jealous Jaguar

Jawaban yang mirip dengan “Python berhenti saat loop setelah waktu”

Pertanyaan yang mirip dengan “Python berhenti saat loop setelah waktu”

Lebih banyak jawaban terkait untuk “Python berhenti saat loop setelah waktu” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya