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

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

更改 for 循環(huán)的前一個(gè)條目

更改 for 循環(huán)的前一個(gè)條目

一只甜甜圈 2023-02-15 16:41:52
是否可以更改 for 循環(huán),在它運(yùn)行后然后在下一次迭代中返回并更改它?#the code examplescore = 50running = Truewhile running:    for rounds in range(0, 6):        for rounds in range(0, 6):           if input() == x:           score - 3           print(score)         elif input() == y:           score - 2           print(score)         elif input() == z:           score - 1           print(score)         elif input() == **change**:            #Edit previous loop input because of an error or typo(x should have been z previous iteration) #How would one make this happen?
查看完整描述

1 回答

?
慕標(biāo)5832272

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

我不認(rèn)為 Loop 可以回退一次或幾次迭代。問題在于您希望它返回的迭代次數(shù)。盡管可以通過反轉(zhuǎn)操作來實(shí)現(xiàn)您的用例,但您正在這樣做。


#the code example

score = 50

running = True

while running:

    for rounds in range(0, 6):

        for rounds in range(0, 6):

           if input() == x:

           score - 3

           print(score)

             elif input() == y:

               score - 2

               print(score)

             elif input() == z:

               score - 1

               print(score)

             elif input() == undoX:

               score + 3

               print(score)

             elif input() == undoY:

               score + 2

               print(score)

             elif input() == undoZ:

               score + 1

               print(score)

實(shí)現(xiàn)它的粗略方法是 undoX(一次操作反轉(zhuǎn))、undoX2(兩次操作反轉(zhuǎn))等。 input() 的更多數(shù)據(jù)類型未知;如果它是 Integer 而不是 'undoX' 可以用 '-x' 代替。如果您想在撤消操作后保持迭代次數(shù)不變,而不是將 range(0,6) 更改為 range(0,iterations) 并寫入修改后的案例;


            elif input() == undoX:

               score + 3

               iterations+1 //To keep no. of iterations intact with every undoOperation

               print(score)


查看完整回答
反對(duì) 回復(fù) 2023-02-15
  • 1 回答
  • 0 關(guān)注
  • 126 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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