TibbersGo

Results 2 comments of TibbersGo

How can I fit python to read the xlsx file generated by pyecelerate? I tested several reading xlsx-related libraries, but they could not be read normally.

This is the demo I used ``` python from pyexcelerate import Workbook workbook = Workbook() data=[] for j in range(100): data_list = ['a', 'b', 'c', 'd', 'e'] data.append(data_list) workbook.new_sheet("sheet1", data=data)...