Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将数组 (data = [][]) 写入我将使用 xlwt 创建的工作表。我的问题是我可以指定一个列开始吗?我打算使用for循环遍历数组逐行检索值,每行开始一个新行例如:第一行从C1开始,下一行从C2开始等等......我已经阅读了文档和示例但找不到明确的方法来做到这一点。任何帮助将不胜感激!
就像是:
wb = xlwt.Workbook() ws = wb.add_sheet('Sheet1') for r, row in enumerate(data): for c, col in enumerate(row): ws.write(r, 2 + c, label=col)