翼度科技»论坛 编程开发 python 查看内容

Python中4种方法实现 xls 文件转 xlsx

3

主题

3

帖子

9

积分

新手上路

Rank: 1

积分
9
在 Python 中,可以采用 pandas、pyexcel、win32com 和 xls2xlsx 这四个模块,实现 xls 转 xlsx 格式。
以 Excel 示例文件 test_Excel.xls 为例,具体内容如下图所示:

1.pandas

安装命令
  1. pip install pandas -i https://mirrors.aliyun.com/pypi/simple
复制代码
具体使用方法
  1. import pandas as pd
  2. filename = "test_Excel.xls"
  3. outfile = "test_Excel-pandas.xlsx"
  4. # Read Excel xls file
  5. data = pd.read_excel(filename)
  6. # Write to xlsx file with no row index
  7. data.to_excel(outfile, index=False)
复制代码
注:上面的方法输出的 xlsx 文件同样只保留了文本,没有保留格式信息。
2.win32com

安装命令
  1. python -m pip install pywin32 -i https://mirrors.aliyun.com/pypi/simple
复制代码
具体使用方法
  1. import os
  2. import win32com.client as win32
  3. filename = "test_Excel.xls"
  4. outfile = "test_Excel-win32.xlsx"
  5. # Open up Excel
  6. excel = win32.gencache.EnsureDispatch("Excel.Application")
  7. # Open xls file
  8. wb = excel.Workbooks.Open(os.path.abspath(filename))
  9. # Save as xlsx file
  10. wb.SaveAs(os.path.abspath(outfile), FileFormat=51)
  11. wb.Close()
  12. excel.Application.Quit()
复制代码
注:win32com 模块只适用于已安装 Excel 软件的Windows 系统下,但输出的 xlsx 文件可以同时保留文本和格式。
3.xls2xlsx

安装命令
  1. pip install xlrd xls2xlsx -i https://mirrors.aliyun.com/pypi/simple
复制代码
具体使用方法
  1. from xls2xlsx import XLS2XLSX
  2. #学习中遇到问题没人解答?小编创建了一个Python学习交流群:725638078
  3. filename = "test_Excel.xls"
  4. outfile = "test_Excel-x2x.xlsx"
  5. # Read xls file
  6. x2x = XLS2XLSX(filename)
  7. # Write to xlsx file
  8. x2x.to_xlsx(outfile)
复制代码
注:使用上面的方法得到的 xlsx 文件可以同时保留文本和格式信息,并且不依赖于 Windows 系统和 Excel 程序。
4.pyexcel

安装命令
  1. pip install pyexcel -i https://mirrors.aliyun.com/pypi/simple
复制代码
具体使用方法
  1. import pyexcel
  2. filename = "test_Excel.xls"
  3. outfile = "test_Excel-pyexcel.xlsx"
  4. # Convert xls file to xlsx directly
  5. pyexcel.save_book_as(file_name=filename, dest_file_name=outfile)
复制代码
注:上面的方法输出的 xlsx 文件同样只保留了文本,没有保留格式信息。

来源:https://www.cnblogs.com/Pythonmiss/p/18313133
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具