gpt4 book ai didi

python - 将文件中的连续两行作为值、键对读取到字典中

转载 作者:太空宇宙 更新时间:2023-11-03 16:50:05 24 4
gpt4 key购买 nike

if Class.lower() == ("classa"):
print("Showing results for ClassA")
NewDict = {}
with open ("ClassA.txt","r") as A:
for line in A:

我的列表如下,我想将用户的名字作为键,将他们的分数作为值。

3
Dominic
1
Eric
7
Joe
4
Sasha
8
Olivia
6
Callum

我一直在制作用户名,例如多米尼克是字典的键,他们的分数是他们的值。我不能这样做,因为在我的文本文件中,它们位于不同的行上,分数位于第一行,然后是每隔一行,名称位于第二行以及从那里开始的每隔一行。

最佳答案

以下解决方案做出了一些假设。首先,文件中的行数是偶数,因为总是有一行带有分数,后面跟着一行带有名称。它还假设没有重复的名称,并且遵循您显示的格式。

话虽如此,此解决方案向您展示了如何构建将名称映射到分数的字典,并且应该为您指明正确的方向。

>>> with open('ClassA.txt') as f:
... scores = {name.strip():int(score) for score, name in zip(f, f)}
...
>>> scores
{'Callum': 6, 'Sasha': 4, 'Olivia': 8, 'Joe': 7, 'Dominic': 3, 'Eric': 1}

进一步阅读:How do I read two lines from a file at a time using python

对于使用 Python 2 遇到这个问题的人:请考虑使用 itertools.izip 来提高内存效率,尤其是在文件很大的情况下。

编辑:

Most of your assumptions are correct however names are used again three times each, the code which you have given would work if the name was not repeated.

你应该提到这一点。在这种情况下,我建议您将分数附加到列表中。字典中不能出现两次相同的键。

>>> from collections import defaultdict
>>> scores = defaultdict(list)
>>>
>>> with open('ClassA.txt') as f:
... for score, name in zip(f, f):
... scores[name.strip()].append(int(score))
...
>>> scores
defaultdict(<type 'list'>, {'Callum': [6, 12, 18], 'Sasha': [4, 10, 16], 'Olivia': [5, 11, 17], 'Joe': [3, 9, 15], 'Dominic': [1, 7, 13], 'Eric': [2, 8, 14]})

我用于演示的输入文件如下所示:

1
Dominic
2
Eric
3
Joe
4
Sasha
5
Olivia
6
Callum
7
Dominic
8
Eric
9
Joe
10
Sasha
11
Olivia
12
Callum
13
Dominic
14
Eric
15
Joe
16
Sasha
17
Olivia
18
Callum

关于python - 将文件中的连续两行作为值、键对读取到字典中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35917558/

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