簡體   English   中英

你如何將此文本文件轉換為字典? (PYTHON)

[英]How do you convert this textfile into dictionary? (PYTHON)

我有一個 .txt 文件,內容如下:

Areca Palm
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

Canary Date Palm 
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

我想將這些.txt 文件轉換為 python 上的字典,並且 output 應該如下所示:

d = {'Areca Palm': ('2018-11-03 18:21:26', 'Tropical/sub-Tropical plant', 'Leathery leaves, mid to dark green', 'Moist and well-draining soil'..etc 'Canary Date Palm': ('2018-11-05 10:12:15', 'Semi-shade, full sun'...)

我該怎么做呢?

以下代碼顯示了一種方法,即使用非常簡單的兩態 state 機器讀取文件:

with open("data.in") as inFile:
    # Initialise dictionary and simple state machine.

    afterBlank = True
    myDict = {}

    # Process each line in turn.

    for line in inFile.readlines():
        line = line.strip()

        if afterBlank:
            # First non-blank after blank (or at file start) is key
            # (blanks after blanks are ignored).

            if line != "":
                key = line
                myDict[key] = []
                afterBlank = False
        else:
            # Subsequent non-blanks are additional lines for key
            # (blank after non-blank switches state).

            if line != "":
                myDict[key].append(line)
            else:
                afterBlank = True

# Dictionary holds lists, make into tuples if desired.

for key in myDict.keys():
    myDict[key] = tuple(myDict[key])

import pprint
pprint.pprint(myDict)

使用您的輸入數據給出 output (輸出與pprint比標准 Python print更具可讀性):

{'Areca Palm': ('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'),
 'Canary Date Palm': ('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')}

通過編寫 function 來處理文件並一次產生一個有意義的部分,可以大大簡化許多解析問題。 通常,這部分所需的邏輯非常簡單。 而且它很簡單,因為 function 不關心有關您的更大問題的任何其他細節。

然后,該步驟簡化了下游代碼,其重點是一次解構一個有意義的部分。 這部分可以忽略更大的文件問題——同時保持簡單。

插圖:

import sys

def get_paragraphs(path):
    par = []
    with open(path) as fh:         # The basic pattern tends to repeat:
        for line in fh:
            line = line.rstrip()
            if line:               # Store lines you want.
                par.append(line)
            elif par:              # Yield prior batch.
                yield par
                par = []
        if par:                    # Don't forget the last one.
            yield par

path = sys.argv[1]
d = {
    p[0] : tuple(p[1:])
    for p in get_paragraphs(path)
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM