gpt4 book ai didi

python - 匹配 2 个列表

转载 作者:太空宇宙 更新时间:2023-11-04 08:10:42 24 4
gpt4 key购买 nike

我正在尝试将学生姓名与他们在考试中获得的分数相匹配。所以我有 2 个列表

year3studentslist = ['Dave','Tom','Alan']
year3scorelist = ['17','3','12']

在我的程序中发生的事情是学生登录完成测试并获得分数。我将如何将学生的姓名与分数相匹配?

最佳答案

使用 zip()可能是最简单的方法。执行 zip(year3studentslist, year3scorelist) 返回一个元组列表:

[('Dave', '17'), ('Tom', '3'), ('Alan', '12')]

因此只需遍历此列表以访问元素:

for student, score in zip(year3studentslist, year3scorelist):
print student, score

如果您想通过学生姓名访问数据,您可以将上述压缩数据转换为字典:

data_dict = {item[0]: item[1] for item in zip(year3studentslist, year3scorelist)}

相同
data_dict = dict(zip(year3studentslist, year3scorelist))

现在您可以通过 data_dict['Dave'] 访问“Dave 的”分数。但请注意,在字典中,键必须是唯一的。在这种情况下,我们选择学生的名字作为键,这在类(class)中有两个 Dave 的情况下不是一个好主意。只有当您确信名称是唯一的时才使用字典方法是个好主意

关于python - 匹配 2 个列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22973804/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com