第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

循環(huán)內(nèi)有超時(shí)的for循環(huán)?

循環(huán)內(nèi)有超時(shí)的for循環(huán)?

一只萌萌小番薯 2023-06-20 17:25:57
我試圖找到一種方法來進(jìn)行for循環(huán),如果for循環(huán)的迭代次數(shù)超過超時(shí)時(shí)間,則它會(huì)中斷并轉(zhuǎn)到下一次迭代。例子 :timeout = 60for i in mylist:   i += 1   if time > timeout:       break
查看完整描述

2 回答

?
當(dāng)年話下

TA貢獻(xiàn)1890條經(jīng)驗(yàn) 獲得超9個(gè)贊

我認(rèn)為您可以使用時(shí)間模塊,如下所示:


import time


#get the time at the start of the program

x = time.localtime(time.time())

start_time = time.strftime('%S', x)


#the loop

timeout = 5

for i in range(10000000):

   i += 1

   y = time.localtime(time.time())

   now_time = time.strftime('%S', y)

   run_time = int(now_time) - int(start_time)

   print(run_time) #to see the run_time

   if run_time > timeout:

       break


查看完整回答
反對 回復(fù) 2023-06-20
?
一只名叫tom的貓

TA貢獻(xiàn)1906條經(jīng)驗(yàn) 獲得超3個(gè)贊

假設(shè)單次迭代不需要那么多,只需使用time模塊和 while 循環(huán),如下所示:


mylist = [1,2,3]

import time

timeout = 60

time_start = time.time()

i = 0

while i < len(mylist) and time.time() - time_start < timeout:

    # do your stuff

    i += 1

if i == len(mylist):

    # this code runs if the iteration has completed, pass does nothing

    pass

else:

    # and this code runs if there was a timeout

    pass


查看完整回答
反對 回復(fù) 2023-06-20
  • 2 回答
  • 0 關(guān)注
  • 170 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)