6

这是我的 xlsx 文件:

在此处输入图像描述

我想将这些数据更改为这样的字典

{
    0:{
       'a':1,
       'b':100,
       'c':2,
       'd':10
    },
    1:{
       'a':8,
       'b':480,
       'c':3,
       'd':14
    }
...
}

那么有人知道一个python库来做到这一点,从第124行开始,到第141行结束,

谢谢

4

4 回答 4

1

假设你有这样的数据:

a,b,c,d
1,2,3,4
2,3,4,5
...

2014 年的众多潜在答案之一是:

import pyexcel


r = pyexcel.SeriesReader("yourfile.xlsx")
# make a filter function
filter_func = lambda row_index: row_index < 124 or row_index > 141
# apply the filter on the reader
r.filter(pyexcel.filters.RowIndexFilter(filter_func))
# get the data
data = pyexcel.utils.to_records(r)
print data

现在数据是一个字典数组:

[{
   'a':1,
   'b':100,
   'c':2,
   'd':10
},
{
   'a':8,
   'b':480,
   'c':3,
   'd':14
}...
]

文档可以在这里阅读

于 2014-09-21T21:29:20.917 回答
1

xlrd的选项:

(1) 你的 xlsx 文件看起来不是很大;将其保存为 xls。

(2) 使用xlrdplus 附加的 beta-test 模块xlsxrd(找到我的电子邮件地址并索取);该组合将从 xls 和 xlsx 文件无缝读取数据(相同的 API;它检查文件内容以确定它是 xls、xlsx 还是冒名顶替者)。

在任何一种情况下,像下面的(未经测试的)代码应该做你想做的事:

from xlrd import open_workbook
from xlsxrd import open_workbook
# Choose one of the above

# These could be function args in real live code
column_map = {
    # The numbers are zero-relative column indexes
    'a': 1,
    'b': 2,
    'c': 4,
    'd': 6,
    }
first_row_index = 124 - 1
last_row_index = 141 - 1
file_path = 'your_file.xls'

# The action starts here
book = open_workbook(file_path)
sheet = book.sheet_by_index(0) # first worksheet
key0 = 0
result = {}
for row_index in xrange(first_row_index, last_row_index + 1):
    d = {}
    for key1, column_index in column_map.iteritems():
        d[key1] = sheet.cell_value(row_index, column_index)
    result[key0] = d
    key0 += 1
于 2011-04-02T05:04:29.143 回答
0

另一种选择是openpyxl。我一直想尝试一下,但还没有开始,所以我不能说它有多好。

于 2011-04-03T09:54:20.917 回答
0

这是一个仅使用标准库的非常粗略的实现。

def xlsx(fname):
    import zipfile
    from xml.etree.ElementTree import iterparse
    z = zipfile.ZipFile(fname)
    strings = [el.text for e, el in iterparse(z.open('xl/sharedStrings.xml')) if el.tag.endswith('}t')]
    rows = []
    row = {}
    value = ''
    for e, el in iterparse(z.open('xl/worksheets/sheet1.xml')):
        if el.tag.endswith('}v'): # <v>84</v>
            value = el.text
        if el.tag.endswith('}c'): # <c r="A3" t="s"><v>84</v></c>
            if el.attrib.get('t') == 's':
                value = strings[int(value)]
            letter = el.attrib['r'] # AZ22
            while letter[-1].isdigit():
                letter = letter[:-1]
            row[letter] = value
        if el.tag.endswith('}row'):
            rows.append(row)
            row = {}
    return dict(enumerate(rows))
于 2014-02-27T12:14:32.127 回答