我正在尝试获取一个文件,它看起来像这样:
AAA x 111
AAB x 111
AAA x 112
AAC x 123
...
并使用字典使输出看起来像这样
{AAA: ['111', '112'], AAB: ['111'], AAC: [123], ...}
我已经试过了
file = open("filename.txt", "r")
readline = file.readline().rstrip()
while readline!= "":
list = []
list = readline.split(" ")
j = list.index("x")
k = list[0:j]
v = list[j + 1:]
d = {}
if k not in d == False:
d[k] = []
d[k].append(v)
readline = file.readline().rstrip()
我一直收到 TypeError: unhashable type: 'list'
。我知道字典中的键不能是列表,但是我试图把我的值变成一个列表,而不是键。我在想我是不是在什么地方犯了错。