写一个python函数读取wps表格
时间: 2023-07-07 21:05:27 浏览: 243
Python,pywin32,WPS开发帮助api接口
可以使用Python的pandas库来读取WPS表格。下面是一个读取WPS表格并输出内容的示例代码:
```python
import pandas as pd
def read_wps_excel(file_path):
df = pd.read_excel(file_path, engine='wps')
print(df)
# example usage
read_wps_excel('example.xlsx')
```
其中,`file_path`参数是WPS表格文件的路径。`pd.read_excel()`方法中的`engine`参数需要设置为`'wps'`,以便正确地读取WPS表格。读取完成后,可以通过`print(df)`来输出表格内容。
阅读全文