使用一个变量all_students保存一个班的学生信息(4个),每个学生需要保存:姓名、年龄、成绩、电话
all_students = [
{'name':'stu1', 'age': 19, 'score':81, 'tel':'192222'},
{'name':'stu2', 'age': 29, 'score':90, 'tel':'211222'},
{'name':'stu3', 'age': 12, 'score':67, 'tel':'521114'},
{'name':'stu4', 'age': 30, 'score':45, 'tel':'900012'},
]
1.添加学生:输入学生信息,将输入的学生的信息保存到all_students中
例如输入:
姓名: 小明
年龄: 20
成绩: 100
电话: 111922
那么就在all_students中添加{'name':'小明', 'age': 20, 'score': 100, 'tel':'111922'}
解:
name = input('请输入要添加的姓名:')
tuple1 = ('name', name)
age = input('请输入要添加的年龄:')
tuple2 = ('age', age)
score = input('请输入要添加的成绩:')
tuple3 = ('score', score)
tel = input('请输入要添加的电话:')
tuple4 = ('tel', tel)
list1 = [tuple1, tuple2, tuple3, tuple4]
new_student = dict(list1)
all_students.append(new_student)
print('新的学生信息为:\n', all_students)
运行结果:
请输入要添加的姓名:小明
请输入要添加的年龄:20
请输入要添加的成绩:100
请输入要添加的电话:111922
新的学生信息为:
[{'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'}, {'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}, {'name': 'stu3', 'age': 12, 'score': 67, 'tel': '521114'}, {'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'}, {'name':'小明', 'age': 20, 'score': 100, 'tel':'111922'}]
2.按姓名查看学生信息:
例如输入:
姓名: stu1 就打印:'name':'stu1', 'age': 19, 'score':81, 'tel':'192222'
解:
name = input('请输入要查询的学生姓名:')
i = 0
while i < len(all_students):
student = all_students[i]
i +=1
if student['name'] == name:
print(student)
运行结果:
请输入要查询的学生姓名:stu2
{'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}
3.求所有学生的平均成绩和平均年龄
解:
pj_score = 0
pj_age = 0
i = 0
print('学生信息有:')
while i < len(all_students):
student = all_students[i]
pj_score += student['score']
pj_age += student['age']
print(student)
i += 1
print('所有学生的平均成绩为:%.2f ;平均年龄为:%d' % (pj_score / len(all_students), pj_age / len(all_students)))
运行结果:
学生信息有:
{'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'}
{'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}
{'name': 'stu3', 'age': 12, 'score': 67, 'tel': '521114'}
{'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'}
{'name': '小明', 'age': 20, 'score': 100, 'tel': '111922'}
所有学生的平均成绩为:76 ;平均年龄为:22
4.删除班级中年龄小于18岁的学生
解:
print('初始学生信息为:')
i = 0
while i < len(all_students):
student = all_students[i]
print(student)
i += 1
print('删除班级中年龄小于18岁的学生后,学生的信息为:')
j = 0
while j < len(all_students):
student = all_students[j]
age = student['age']
if age < 18:
all_students.pop(j)
else:
print(student)
j += 1
运行结果:
初始学生信息为:
初始学生信息为:
{'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'}
{'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}
{'name': 'stu3', 'age': 12, 'score': 67, 'tel': '521114'}
{'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'}
{'name': '小明', 'age': 20, 'score': 100, 'tel': '111922'}
删除班级中年龄小于18岁的学生后,学生的信息为:
{'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'}
{'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}
{'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'}
{'name': '小明', 'age': 20, 'score': 100, 'tel': '111922'}
5.统计班级中不及格的学生的人数
解:
i = 0
x = 0
while i < len(all_students):
student = all_students[i]
if student['score'] < 60:
x += 1
i += 1
print('该班级中不及格的学生有 %d 人。' % x)
运行结果:
该班级中不及格的学生有 1 人。
6.打印手机号最后一位是2的学生的姓名
解:
i = 0
print('手机号最后一位是 2 的学生的有:')
while i < len(all_students):
student = all_students[i]
tel = int(student['tel'])
if tel % 10 == 2:
print(student['name'])
i += 1
运行结果:
手机号最后一位是 2 的学生的有:
stu1
stu2
stu4
小明
提高题作业:
学生管理系统:
all_students = [
{'sno': 1, 'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'},
{'sno': 2, 'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'},
{'sno': 3, 'name': 'stu3', 'age': 12, 'score': 67, 'tel': '521114'},
{'sno': 4, 'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'},
{'sno': 5, 'name': '小明', 'age': 17, 'score': 100, 'tel': '111922'}
]
ti_shi1 = '''
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
'''
ti_shi2 = '''
请选择(1 - 4):
1.查看所有学生
2.按姓名查找
3.按学号查找
4.返回
'''
ti_shi3 = '''
请输入:
1.继续
2.返回
'''
num1 = 1
num2 = 1
num3 = 1
while 1 <= num1 <= 5:
print(ti_shi1)
num1 = int(input('请输入 1 ~ 5 ,进入其控制版面\n(输入其它数结束程序):'))
if num1 == 1:
while num3 == 1:
name = input('请输入要添加的姓名:')
tuple1 = ('name', name)
age = input('请输入要添加的年龄:')
tuple2 = ('age', age)
score = input('请输入要添加的成绩:')
tuple3 = ('score', score)
tel = input('请输入要添加的电话:')
tuple4 = ('tel', tel)
tuple0 = ('sno', len(all_students) + 1)
list1 = [tuple0, tuple1, tuple2, tuple3, tuple4]
new_student = dict(list1)
all_students.append(new_student)
print('添加成功!')
print(ti_shi3)
num3 = int(input())
elif num1 == 2:
while num3 == 1:
print(ti_shi2)
num2 = int(input(''))
if num2 == 1:
i = 0
print('所有学生信息为:')
while i < len(all_students):
student = all_students[i]
print(student)
i += 1
elif num2 == 2:
name = input('请输入要查询的学生姓名:')
i = 0
while i < len(all_students):
student = all_students[i]
i += 1
if student['name'] == name:
print('该生的信息为:\n', student)
break
else:
print('查无此人。')
elif num2 == 3:
sno = int(input('请输入学生的学号:'))
i = 0
while i < len(all_students):
student = all_students[i]
i += 1
if student['sno'] == sno:
print('该生的信息为:\n', student)
break
else:
print('查无此人。')
print(ti_shi3)
num3 = int(input())
elif num1 == 3:
while num3 == 1:
name = input('请输入要修改的学生姓名:')
i = 0
while i < len(all_students):
student = all_students[i]
i += 1
if student['name'] == name:
lie_bie = input('请输入要改的信息类别:')
xin_xi = input('请输入新的信息:')
student[lie_bie] = xin_xi
print('修改成功!')
break
print(ti_shi3)
num3 = int(input())
elif num1 == 4:
while num3 == 1:
name = input('请输入要删除的学生姓名:')
i = 0
while i < len(all_students):
student = all_students[i]
if student['name'] == name:
del all_students[i]
print('删除成功!')
i += 1
print(ti_shi3)
num3 = int(input())
print('程序结束。')
运行效果:
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):1
请输入要添加的姓名:阿黄
请输入要添加的年龄:3
请输入要添加的成绩:95
请输入要添加的电话:123456
添加成功!
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):2
请选择(1 - 4):
1.查看所有学生
2.按姓名查找
3.按学号查找
4.返回
1
所有学生信息为:
{'sno': 1, 'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'}
{'sno': 2, 'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}
{'sno': 3, 'name': 'stu3', 'age': 12, 'score': 67, 'tel': '521114'}
{'sno': 4, 'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'}
{'sno': 5, 'name': '小明', 'age': 17, 'score': 100, 'tel': '111922'}
{'sno': 6, 'name': '阿黄', 'age': '3', 'score': '95', 'tel': '123456'}
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):2
请选择(1 - 4):
1.查看所有学生
2.按姓名查找
3.按学号查找
4.返回
2
请输入要查询的学生姓名:阿黄
该生的信息为:
{'sno': 6, 'name': '阿黄', 'age': '3', 'score': '95', 'tel': '123456'}
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):2
请选择(1 - 4):
1.查看所有学生
2.按姓名查找
3.按学号查找
4.返回
3
请输入学生的学号:6
该生的信息为:
{'sno': 6, 'name': '阿黄', 'age': '3', 'score': '95', 'tel': '123456'}
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):2
请选择(1 - 4):
1.查看所有学生
2.按姓名查找
3.按学号查找
4.返回
4
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):3
请输入要修改的学生姓名:阿黄
请输入要改的信息类别:age
请输入新的信息:21
修改成功!
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):2
请选择(1 - 4):
1.查看所有学生
2.按姓名查找
3.按学号查找
4.返回
1
所有学生信息为:
{'sno': 1, 'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'}
{'sno': 2, 'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}
{'sno': 3, 'name': 'stu3', 'age': 12, 'score': 67, 'tel': '521114'}
{'sno': 4, 'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'}
{'sno': 5, 'name': '小明', 'age': 17, 'score': 100, 'tel': '111922'}
{'sno': 6, 'name': '阿黄', 'age': '21', 'score': '95', 'tel': '123456'}
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):4
请输入要删除的学生姓名:阿黄
删除成功!
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):2
请选择(1 - 4):
1.查看所有学生
2.按姓名查找
3.按学号查找
4.返回
1
所有学生信息为:
{'sno': 1, 'name': 'stu1', 'age': 19, 'score': 81, 'tel': '192222'}
{'sno': 2, 'name': 'stu2', 'age': 29, 'score': 90, 'tel': '211222'}
{'sno': 3, 'name': 'stu3', 'age': 12, 'score': 67, 'tel': '521114'}
{'sno': 4, 'name': 'stu4', 'age': 30, 'score': 45, 'tel': '900012'}
{'sno': 5, 'name': '小明', 'age': 17, 'score': 100, 'tel': '111922'}
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):5
==============================================================
欢迎来到学生管理系统!
1. 添加学生
2. 查看学生
3. 修改学生信息
4. 删除学生
5. 返回
==============================================================
请输入 1 ~ 5 ,进入其控制版面
(输入其它数结束程序):6
程序结束。