Python 多变量输入验证...简化了吗?

Python Input Validation with multiple variables...simplified?

首先,我在这个网站上搜索了很多次,并找到了关于这个主题的其他帖子,甚至是我正在处理的相同作业,所以代码非常相似......但是,有一些事情略有不同。我正在学习这门课程,使用 "Starting out with Python, 4th edition,",我的作业来自第 5 章“15. 测试平均分和成绩”。我已经为除了输入验证之外的所有内容编写了代码,我的导师坚持我们使用它,尽管我们只应该使用本书到目前为止涵盖的编码技术:没有列表、元组、字典、lambda 等。 . 这使得我在网上(和本网站)找到的大多数用于输入验证的示例都毫无用处,因为我无法弄清楚它们,如果我想的话也无法使用它们。我已经向讲师寻求帮助(在线课程),但几周都没有收到任何回复,所以我来了。该程序应该要求用户输入 5 个测试分数,找到分数的平均值,为每个分数分配一个字母等级,然后显示带有字母等级的分数以及平均值。我认为如果我用 "for scores in range(1, 6)" 循环请求分数会更容易验证输入,但我不知道如何访问用户输入的每个分数以发送到 determine_grade 函数,然后在 main 中显示(我没有在下面包含任何代码)...所以我最终为每个分数创建了一个变量,但后来我 运行 陷入了如何验证的问题为每个变量输入(确保输入的分数不小于 0 或大于 100,或者用户输入的是数字而不是字母)。我希望能够在代码中编写一些异常处理,以便如果用户输入的是字母而不是数字,则不会引发异常,因为我的讲师已经说过 "it's my job from now on to try to crash your program," 尽管他没有就如何实施这种输入验证向我反馈。任何帮助都将不胜感激,我已经为此苦苦挣扎了好几天,这让我压力很大。

编辑:类型错误:input_validation() 缺少 4 个必需的位置参数:'score2'、'score3'、'score4' 和 'score5' 是错误 I我知道我做错了什么,但是,我不知道是什么......我觉得有一种更简单的方法来处理多个变量的输入验证......因为我在这方面还很陌生, 我不知道如何实现它。

def get_scores():

score1 = input_validation(float(input('Enter the score for the first test: ')))
score2 = input_validation(float(input('Enter the score for the second test: ')))
score3 = input_validation(float(input('Enter the score for the third test: ')))
score4 = input_validation(float(input('Enter the score for the fourth test: ')))
score5 = input_validation(float(input('Enter the score for the fifth test: ')))
return score1, score2, score3, score4, score5

def input_validation(score1, score2, score3, score4, score5):
while (score1, score2, score3, score4, score5) < 0 or (score1, score2, score3, score4, score5) > 100:
    print('Score cannot be less than 0 or greater than 100!')
    (score1, score2, score3, score4, score5) = float(input('Please enter a correct test score: '))
    return score1, score2, score3, score4, score5

您的直接错误是您已将 input_validation() 定义为采用五个参数,但您在调用它时只传递了一个参数。

在一个函数中收集输入并在另一个函数中验证输入是很尴尬的,因为这些函数必须非常紧密地协调以允许在错误输入时重新提示。

同时要求多个分数然后一次验证它们也很尴尬,因为如果某些分数有效而某些分数无效怎么办?您必须要么再次询问所有分数,这会浪费用户的时间,要么您需要一种仅针对无效分数重新提示的方法,这是不必要的复杂性。

一次只处理一个分数可能是一个更好的设计,所有的输入和验证都在一个地方:

def input_validation(prompt):
    # keep looping until they enter a good score
    while True:
        # get the answer as a string
        answer = input(prompt)
        try:
            # convert to float
            score = float(answer)
            # if in range, we're done!  return the converted score number
            if 0 <= score <= 100:
                return score
            # otherwise out of range, print an error message and keep looping
            else:
                print('Score cannot be less than 0 or greater than 100!')
        # if the answer wasn't a number, print an error message and keep looping
        except ValueError:
            print ('That is not a test score.')

那么你可以这样称呼它:

score1 = input_validation('Enter the score for the first test: ')
score2 = input_validation('Enter the score for the second test: ')

如果您想将分数保存在一个列表中而不是有五个单独的变量:

scores = []
for i in range(5):
    scores.append(input_validation('Enter the score for test number %d: ' % i+1))