打开文本文件并创建一个dictionnary变量

时间:2018-06-01 07:17:34

标签: python dictionary text-files

我想将此文本文件作为词典。 像这样:

{1: [37, 79, ..., 196], ..., 200: [149,...,35]}

Picture

我使用了一张照片,但是正常情况下,它是一个文本文件。 谢谢你的帮助 !!

文件的Dropbox链接:https://www.dropbox.com/s/uvvga3pypy8drm2/kargerMinCut.txt?dl=0

1 个答案:

答案 0 :(得分:0)

with open('filename') as f:
    d = {k + 1: list(map(int, l.split())) for k, l in enumerate(f)}