繁体   English   中英

通过在 Python 中读取文本文件创建具有一组固定键的字典

[英]Create a dictionary with a fixed set of keys from reading text file in Python

输入: - 包含 3 行的文本文件:

"Thank you
binhnguyen
2010-09-12
I want to say thank you to all of you."

输出:我想创建一个带有固定键的字典: 'title'、'name'、'date'、'feedback' ,分别在上面的文件中存储 4 行。

{'title': 'Thank you', 'name': 'binhnguyen', 'date': '2010-09-12 ', 'feedback': '我想对你们所有人说声谢谢。'}

非常感谢

给定file.txt文件所在的位置和格式是问题中描述的格式,这将是代码:

path = r"./file.txt"

content = open(path, "r").read().replace("\"", "")
lines = content.split("\n")

dict_ = {
    'title': lines[0],
    'name': lines[1],
    'date': lines[2],
    'feedback': lines[3]
}
print(dict_)

您基本上可以定义一个键列表并将它们与行匹配。

例子:

key_list = ["title","name","date","feedback"]
text = [line.replace("\n","").replace("\"","")  for line in open("text.txt","r").readlines()]
dictionary = {}
for index in range(len(text)):
    dictionary[key_list[index]] = text[index]

print(dictionary)

输出:

{'title': 'Thank you', 'name': 'binhnguyen', 'date': '2010-09-12', 'feedback': 'I want to say thank you to all of you.'}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM