我正在尝试使用以下代码将字典写入 .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'。
准确地说,我正在尝试将键条目填充到列而不是行中(按行填充是默认方式)。到目前为止,我还没有遇到任何有用的东西,并且非常感谢在修复错误方面的任何帮助。