次のようなテキスト ファイルがあります。
01:Pronoun
02:I
03:We
04:Self
05:You
06:Other
07:Negate
08:Assent
09:Article
10:Preps
11:Number
12:Affect
...
今、私はこれの辞書を作りたい..このように見える辞書:
{'01:': ['pronoun'], '02': ['I'],...}
これは私がこれまでに得たコードですが、思い通りに動作しないようです...
with open ('LIWC_categories.text','rU') as document1:
categoriesLIWC = {}
for line in document1:
line = line.split()
if not line:
continue
categoriesLIWC[line[0]] = line[1:]