本文介绍了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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)