要填充字典,您需要一組鍵和一組相應的值。您的密鑰位於第一行,值位於文件的第二行。所以,你可以這樣做:
with open('path/to/file') as infile:
keys = infile.readline().split()
values = infile.readline().strip().split('\t')
answer = {}
for i,key in enumerate(keys):
answer[key] = values[i]
當然,csv
模塊很可能將幫助了很多繁重的(不是說你有很大一部分在這種特殊情況下)的:
import csv
answer = {}
with open('path/to/file') as infile:
infile = csv.reader(infile, delimiter='\t')
keys = next(infile)
values = next(infile)
answer.update(dict(zip(keys, values)))
如果您不確定的文件是如何界定的,但你知道,某種形式的空白的使用,那麼你可以簡單地修改第一個解決方案:
with open('path/to/file') as infile:
keys = infile.readline().split()
values = infile.readline().split('\t')
answer = dict(zip(keys, values))
我看到這個..「_csv.reader」對象有沒有屬性'readline' 我正在使用python 2.7 – nick01 2014-09-03 21:39:12
謝謝。如果我不確定它們是否由製表符分隔,情況如何變化。他們可以在每行的每個條目之間有一個或多個空格。 – nick01 2014-09-03 21:46:30
@ user2812714:剛剛爲你添加編輯 – inspectorG4dget 2014-09-03 21:48:40