为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用户按特定顺序输入关注列表

如何使用户按特定顺序输入关注列表

万千封印 2022-09-06 16:22:03
我有一个代码块,使用户输入斐波那契数列。代码块:    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')我要求用户输入这些数字。当用户输入超过50或输入所有正确的数字时,程序会给出输出“做得好”。如果用户输入错误,程序将输出“重试”。这是完美的工作,但我将如何使用户输入按照这个特定的顺序跟随这个列表,如果不是按照这个顺序,程序输出“重试”。这是电流输出:    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 >这是我想要实现的输出:    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不幸的是,我在实现此输出时遇到问题。有人能帮助我吗?
查看完整描述

2 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

您可以改为循环访问目标号码,并使用循环不断要求用户输入,直到输入号码与目标号码匹配: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')


查看完整回答
反对 回复 2022-09-06
?
有只小跳蛙

TA贡献1824条经验 获得超8个赞

假设您希望在每次输入正确值时都进行打印,并且修改了您的值以在其中增加一个1(根据斐波那契数列),则每次获得序列中的下一个值时,都可以在带有索引的列表中移动: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')

如果您不想打印每个迭代,只需删除该语句即可Well doneprint()


查看完整回答
反对 回复 2022-09-06
  • 2 回答
  • 0 关注
  • 68 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信