19

値から辞書を作成したいのですが、Excelセルから取得します。私のコードは以下のとおりです。

wb = xlrd.open_workbook('foo.xls')
sh = wb.sheet_by_index(2)   
for i in range(138):
    cell_value_class = sh.cell(i,2).value
    cell_value_id = sh.cell(i,0).value

そして、以下のように、Excelセルからの値で構成される辞書を作成したいと思います。

{'class1': 1, 'class2': 3, 'class3': 4, 'classN':N}

この辞書を作成する方法について何かアイデアはありますか?

4

9 に答える 9

45

またはパンダを試すことができます

from pandas import *
xls = ExcelFile('path_to_file.xls')
df = xls.parse(xls.sheet_names[0])
print df.to_dict()
于 2013-01-07T12:38:36.093 に答える
19
d = {}
wb = xlrd.open_workbook('foo.xls')
sh = wb.sheet_by_index(2)   
for i in range(138):
    cell_value_class = sh.cell(i,2).value
    cell_value_id = sh.cell(i,0).value
    d[cell_value_class] = cell_value_id
于 2013-01-07T12:34:46.467 に答える
16

このスクリプトを使用すると、Excelデータテーブルを辞書のリストに変換できます。

import xlrd

workbook = xlrd.open_workbook('foo.xls')
workbook = xlrd.open_workbook('foo.xls', on_demand = True)
worksheet = workbook.sheet_by_index(0)
first_row = [] # The row where we stock the name of the column
for col in range(worksheet.ncols):
    first_row.append( worksheet.cell_value(0,col) )
# transform the workbook to a list of dictionaries
data =[]
for row in range(1, worksheet.nrows):
    elm = {}
    for col in range(worksheet.ncols):
        elm[first_row[col]]=worksheet.cell_value(row,col)
    data.append(elm)
print data
于 2016-01-27T10:35:45.733 に答える
4

これを行うには、パンダを使用できます。パンダをインポートし、Excelをパンダデータフレームとして読み取ります。

import pandas as pd
file_path = 'path_for_your_input_excel_sheet'
df = pd.read_excel(file_path, encoding='utf-16')

を使用pandas.DataFrame.to_dictして、パンダのデータフレームを辞書に変換できます。ここで同じドキュメントを見つけてください

df.to_dict()

これにより、読んだExcelシートの辞書が得られます。

一般的な例:

df = pd.DataFrame({'col1': [1, 2],'col2': [0.5, 0.75]},index=['a', 'b'])

>>> df

col1 col2 a 1 0.50 b 2 0.75

>>> df.to_dict()

{'col1': {'a': 1, 'b': 2}, 'col2': {'a': 0.5, 'b': 0.75}}

于 2018-12-26T10:02:10.703 に答える
1

私は行くだろう:

wb = xlrd.open_workbook('foo.xls')
sh = wb.sheet_by_index(2)   
lookup = dict(zip(sh.col_values(2, 0, 138), sh.col_values(0, 0, 138)))
于 2013-01-07T12:47:13.910 に答える
1

そのためのPyPIパッケージもあります:https ://pypi.org/project/sheet2dict/ これは、Excelファイルとcsvファイルを解析し、辞書の配列として返します。各行は、配列内の辞書として表されます。

このように:

Python 3.9.0 (default, Dec  6 2020, 18:02:34)
[Clang 12.0.0 (clang-1200.0.32.27)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

# Import the library
>>> from sheet2dict import Worksheet

# Create an object
>>> ws = Worksheet()

# return converted rows as dictionaries in the array 
>>> ws.xlsx_to_dict(path='Book1.xlsx')
[
    {'#': '1', 'question': 'Notifications Enabled', 'answer': 'True'}, 
    {'#': '2', 'question': 'Updated', 'answer': 'False'}
]
于 2021-02-08T10:23:50.707 に答える
0

csvに変換できる場合、これは非常に適しています。

import dataconverters.commas as commas
filename = 'test.csv'
with open(filename) as f:
      records, metadata = commas.parse(f)
      for row in records:
            print 'this is row in dictionary:'+row
于 2015-02-10T18:34:56.630 に答える
0

パンダを使用してExcelデータをPythonの辞書のリストに変換する場合は、次の方法が最適です。

excel_file_path = 'Path to your Excel file'
excel_records = pd.read_excel(excel_file_path)
excel_records_df = excel_records.loc[:, ~excel_records.columns.str.contains('^Unnamed')]
records_list_of_dict=excel_records_df.to_dict(orient='record')
Print(records_list_of_dict)
于 2021-05-08T10:13:07.023 に答える
0

を使用する場合は、以下のコードのopenpyxlが役立つ可能性があります。

import openpyxl
workbook = openpyxl.load_workbook("ExcelDemo.xlsx")
sheet = workbook.active
first_row = [] # The row where we stock the name of the column
for col in range(1, sheet.max_column+1):
    first_row.append(sheet.cell(row=1, column=col).value)
data =[]
for row in range(2, sheet.max_row+1):
    elm = {}
    for col in range(1, sheet.max_column+1):
        elm[first_row[col-1]]=sheet.cell(row=row,column=col).value
    data.append(elm)
print (data)

クレジット:PythonExcelデータから辞書を作成

于 2021-05-14T10:17:32.373 に答える