python删除xls文件里的空行
时间: 2023-11-03 16:04:18 浏览: 87
可以使用Python中的xlrd和xlwt库来读取和写入Excel文件。以下是一个示例代码,可以删除一个Excel文件中的空行:
```python
import xlrd
import xlwt
# 打开Excel文件
workbook = xlrd.open_workbook('example.xls')
sheet = workbook.sheet_by_index(0)
# 创建新的Excel文件
new_workbook = xlwt.Workbook()
new_sheet = new_workbook.add_sheet(sheet.name)
# 遍历每一行
new_row_index = 0
for row_index in range(sheet.nrows):
# 判断每一行是否为空行
is_empty_row = True
for col_index in range(sheet.ncols):
if sheet.cell(row_index, col_index).value != '':
is_empty_row = False
break
# 如果不是空行,将其复制到新的Excel文件中
if not is_empty_row:
for col_index in range(sheet.ncols):
new_sheet.write(new_row_index, col_index, sheet.cell(row_index, col_index).value)
new_row_index += 1
# 保存新的Excel文件
new_workbook.save('new_example.xls')
```
该代码将读取名为“example.xls”的Excel文件的第一个工作表,并在新的Excel文件中复制所有非空行。新的Excel文件名为“new_example.xls”。
阅读全文