赞
踩
目录
将以下学生按考试成绩高低,将学员分成五组,全存在一个大列表里,5组分别是90~100,...,60分以下
- stu_list=[["apple",75],["李四",97],["张三",77],["mary",89],["jack",90],["马丽",89],["王强",75],["dog",7],["mark",14],["cindy",66],["bb",100],["rose",79]]
- group_list=[
- [],[],[],[],[]
- ]
- for i in stu_list:
- if i[1] >=90:
- group_list[0].append(i)
- elif i[1] >=80:
- group_list[1].append(i)
- elif i[1] >=70:
- group_list[2].append(i)
- elif i[1] >=60:
- group_list[3].append(i)
- else:
- group_list[4].append(i)
-
- for group in group_list:
- print(group)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。