-1

我正在尝试使用以下代码将字典写入 .xlsx 文档:

 example_dict = {"Column 1": [1, 2, 3], "Column 2": [4, 5, 6], "Column 3": [7, 8, 9]}
 cont = pyexcel.utils.dict_to_array(example_dict)
 sheet = pyexcel.Sheet(cont)
 sheet.save_as("output.xlsx")

代码参考http://docs.pyexcel.org/en/v0.1.1/tutorial.html#writing-a-single-sheet-excel-file

我收到错误 AttributeError: 'module' object has no attribute 'utils'

准确地说,我正在尝试将键条目填充到列而不是行中(按行填充是默认方式)。到目前为止,我还没有遇到任何有用的东西,并且非常感谢在修复错误方面的任何帮助。

4

1 回答 1

0

您已链接到非常旧版本的 pyexcel 文档(v0.1.1)。您可能正在使用较新的版本。

当前版本的文档(v0.7.0) 给出了以下示例来完成相同的任务:

a_dictionary_of_one_dimensional_arrays = {
    "Column 1": [1, 2, 3, 4],
    "Column 2": [5, 6, 7, 8],
    "Column 3": [9, 10, 11, 12],
}
sheet = pyexcel.get_sheet(adict=a_dictionary_of_one_dimensional_arrays)
sheet.save_as("output.xlsx")
于 2022-01-28T15:11:14.357 回答