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

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

如何使用戶按特定順序輸入關(guān)注列表

如何使用戶按特定順序輸入關(guān)注列表

萬千封印 2022-09-06 16:22:03
我有一個(gè)代碼塊,使用戶輸入斐波那契數(shù)列。代碼塊:    numb_list = [0, 1, 2, 3, 5, 8, 13, 21, 34, 55]    numb = int(input('Enter the next Fibonacci number >'))    while numb in numb_list and numb <= 50:      numb = int(input('Enter the next Fibonacci number >'))        if numb in numb_list:          print('Well done')        else:          print('Try again')我要求用戶輸入這些數(shù)字。當(dāng)用戶輸入超過50或輸入所有正確的數(shù)字時(shí),程序會(huì)給出輸出“做得好”。如果用戶輸入錯(cuò)誤,程序?qū)⑤敵觥爸卦嚒?。這是完美的工作,但我將如何使用戶輸入按照這個(gè)特定的順序跟隨這個(gè)列表,如果不是按照這個(gè)順序,程序輸出“重試”。這是電流輸出:    Enter the next Fibonacci number >1    Enter the next Fibonacci number >1    Enter the next Fibonacci number >2    Enter the next Fibonacci number >3    Enter the next Fibonacci number >8    Enter the next Fibonacci number >3    Enter the next Fibonacci number >這是我想要實(shí)現(xiàn)的輸出:    Enter the next Fibonacci number >1    Enter the next Fibonacci number >1    Enter the next Fibonacci number >2    Enter the next Fibonacci number >3    Enter the next Fibonacci number >8    Enter the next Fibonacci number >3    Try again不幸的是,我在實(shí)現(xiàn)此輸出時(shí)遇到問題。有人能幫助我嗎?
查看完整描述

2 回答

?
慕尼黑8549860

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

您可以改為循環(huán)訪問目標(biāo)號碼,并使用循環(huán)不斷要求用戶輸入,直到輸入號碼與目標(biāo)號碼匹配:numb_listwhile


numb_list = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]

for target in numb_list:

    while int(input('Enter the next Fibonacci number >')) != target:

        print('Try again')

print('Well done')


查看完整回答
反對 回復(fù) 2022-09-06
?
有只小跳蛙

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

假設(shè)您希望在每次輸入正確值時(shí)都進(jìn)行打印,并且修改了您的值以在其中增加一個(gè)1(根據(jù)斐波那契數(shù)列),則每次獲得序列中的下一個(gè)值時(shí),都可以在帶有索引的列表中移動(dòng):Well donenumb_list


numb_list = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55]

numb = 0

current_index = 1

while numb <= 50:

    numb = int(input('Enter the next Fibonacci number >'))

    if numb_list[current_index] == numb:

        print('Well done')

        current_index += 1

    else:

        print('Try again')

如果您不想打印每個(gè)迭代,只需刪除該語句即可Well doneprint()


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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