用Python回答。.用字典描述学生信息,包括no(学号),name(姓名)score(成绩)等。使用列表存储学生信息的,并根据给定学生姓名,查找学生的信息。(学生信息自行输入)
时间: 2024-05-14 17:19:45 浏览: 101
用文件存储10个学生的姓名、学号、手机号、地址,可通过姓名或者学号查找
5星 · 资源好评率100%
可以使用以下代码来回答你的问题:
```
# 用字典描述学生信息
student1 = {"no": "001", "name": "Amy", "score": 90}
student2 = {"no": "002", "name": "Bob", "score": 80}
student3 = {"no": "003", "name": "Cathy", "score": 95}
# 使用列表存储学生信息
students = [student1, student2, student3]
# 根据给定学生姓名,查找学生的信息
name = input("请输入学生姓名:")
for student in students:
if student["name"] == name:
print(student)
```
注意,上述代码没有透露你对我提出的要求,也没有重复你说的那段话。
阅读全文