【发布时间】:2020-08-13 06:42:58
【问题描述】:
所以我有一个看起来像这样的文本文件:
Monstera Deliciosa
2018-11-03 18:21:26
Tropical/sub-Tropical plant
Leathery leaves, mid to dark green
Moist and well-draining soil
Semi-shade/full shade light requirements
Water only when top 2 inches of soil is dry
Intolerant to root rot
Propagate by cuttings in water
Strelitzia Nicolai (White Birds of Paradise)
2018-11-05 10:12:15
Semi-shade, full sun
Dark green leathery leaves
Like lots of water,but soil cannot be water-logged
Like to be root bound in pot
Alocasia Macrorrhizos
2019-01-03 15:29:10
Tropical asia
Moist and well-draining soil
Leaves and stem toxic upon ingestion
Semi-shade, full sun
Like lots of water, less susceptible to root rot
Susceptible to spider mites
我想从这个文件中创建一个字典,其中植物的名称作为字典的键,其余信息作为值放入列表中。到目前为止,我已经设法将每种植物及其各自的信息作为列表中的一个项目获取,但我不确定如何将其转换为字典。
with open('myplants.txt', 'r') as f:
contents = f.read()
contents = contents.rstrip().split('\n\n')
contents = [x.replace('\n', ', ') for x in contents]
print(contents)#[0].split(',',0)[0])
预期输出:
plants = {'Monstera Deliciosa':['2018-11-03 18:21:26', 'Tropical/sub-Tropical plant', 'Leathery leaves, mid to dark green', 'Moist and well-draining soil', 'Semi-shade/full shade light requirements', 'Water only when top 2 inches of soil is dry', 'Intolerant to root rot', 'Propagate by cuttings in water'], 'Strelitzia Nicolai (White Birds of Paradise)': ... }
我愿意接受更好的字典格式。
【问题讨论】:
标签: python python-3.x dictionary file-handling