0

我是 python 新手,但我现在想做的是删除我的 excel 文件中扩展名为 .xls 的几行。Excel 版本是 2007 。我知道我们可以使用 xlrd xlwt 包,但我不知道删除行或列需要执行哪些函数调用。我只删除那些包含具有特定文件的特定列的行。

我知道open_workbook并读取行和列,但在删除 Excel 文件中的行时遇到问题。同时我也想知道我是否也可以创建一个新的excel文件,如果可以的话怎么办?有关上述特定功能的文档链接会很有帮助,但我找不到讨论通过 python 脚本删除行或列的链接

4

1 回答 1

1

Check out this website here you'll have documentation,tutorials and etc for the xlrd xlwt packages and some others

Edit: From what i know you need to read the original file and copy what you need to a second file, discarding what you don't need

于 2012-11-21T17:46:06.373 回答