将符号后的部分添加到python中的字典

因此,我有一行需要阅读并放入字典中,第一个数字是键,第四个数字是将与该键关联的单词数量。


f = open("wordnetSample.txt", "r")

D = {}

for line in f:

    L = line.split()

    D.update({L[0]: L[4:4 + 2 * int(L[3]):2]})

这些是我放入字典中的行的示例


09826802 18 n 01 Areopagite 0 002 @ 10326901 n 0000 #m 08181009 n 0000 | a member of  the council of the Areopagus  

09826918 18 n 01 Argive 0 002 @ 09729560 n 0000 + 08804512 n 0101 | a native or inhabitant of the city of Argos  

这是我到目前为止为D拥有的


{'09826802': ['Areopagite'], '09826918': ['Argive']}

我想要这个:


{'09826802': ['Areopagite', 'a member of  the council of the Areopagus'], '09826918': ['Argive', 'a native or inhabitant of the city of Argos']}


哔哔one
浏览 227回答 2
2回答

至尊宝的传说

这样做D = {}for line in f:    L = line.split()    L2 = line.split('|')    D.update({L[0]: (L[4:4 + 2 * int(L[3]):2][0], L2[1].split('\n')[0])})我添加了另一个拆分wrt '|'

HUX布斯

with open("wordnetSample.txt") as f:    d = {}    for line in f:        data, label = line.split(' | ')        field = data.split()        d[field[0]] = [field[4], label]
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python