小编典典

Python-轻松将文本文件内容转换为字典值/键

python

假设我有一个包含以下内容的文本文件:

line = "this is line 1"
line2 = "this is the second line"
line3 = "here is another line"
line4 = "yet another line!"

我想将它们快速转换为字典键/值,并以“ line *”作为键,将引号中的文本作为值,同时还要删除等号。

用Python做到这一点的最佳方法是什么?


阅读 379

收藏
2021-01-20

共1个答案

小编典典

f = open(filepath, 'r')
answer = {}
for line in f:
    k, v = line.strip().split('=')
    answer[k.strip()] = v.strip()

f.close()

希望这可以帮助

2021-01-20