当前位置:   article > 正文

Python for 循环与 continue 语句_填入循环遍历studentname列表的代码; 当遍历到缺席学生时,填入continue语句跳过此

填入循环遍历studentname列表的代码; 当遍历到缺席学生时,填入continue语句跳过此

编程要求

  • 填入循环遍历studentname列表的代码;
  • 当遍历到缺席学生时,填入continue语句跳过此次循环。

编程答案

absencenum = int(input())
studentname = []
inputlist = input()
for i in inputlist.split(','):
   result = i
   studentname.append(result)
count = 0
#请在此添加代码,填入循环遍历studentname列表的代码
#********** Begin *********#
for i in studentname:
    student=i
#********** End **********#
    count += 1
    if(count == absencenum):
        #在下面填入continue语句
        #********** Begin *********#
        continue
        #********** End **********#
    print(student,"的试卷已阅")


    

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/366350
推荐阅读
相关标签
  

闽ICP备14008679号