For循环仅执行1次,尽管范围为5 [英] For loop only executes 1 time, though given a range of 5

查看:70
本文介绍了For循环仅执行1次,尽管范围为5的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码:

def input_scores():
scores = []
y = 1
for num in range(5):
    score = int(input(print('Please enter your score for test %d: ' %y)))

    while score < 0 or score > 100:
        print ('Error --- all test scores must be between 0 and 100 points')
        score = int(input('Please try again: '))
    scores.append(score)
    y += 1
    return scores   

当我运行它时,输出如下:

When I run it, the output is as follows:

Please enter your score for test 1: 
None

然后,我将在无"旁边输入测试分数,例如95 然后,它将运行程序的其余部分,而不会提示我将下一个测试分数添加到分数列表中.我真的很好奇为什么会这样

Then I'll enter the test score next to None, as, say 95 It then runs through the rest of the program without prompting me for the next test score to add to the scores list. I'm really curious why that is

提前感谢您抽出宝贵的时间

Thanks in advance for taking the time to help

此致, 〜达斯汀

推荐答案

您的return语句缩进太多,导致该函数在第一次迭代时返回.它必须在for块之外.这段代码有效:

your return statement is indented too much, causing the function to return on the first iteration. It needs to be outside of the for block. This code works:

def input_scores():
    scores = []
    y = 1
    for num in range(5):
        score = int(input('Please enter your score for test %d: ' %y))
        while score < 0 or score > 100:
            print ('Error --- all test scores must be between 0 and 100 points')
            score = int(input('Please try again: '))
        scores.append(score)
        y += 1
    return scores

这篇关于For循环仅执行1次,尽管范围为5的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆