python处理excel数据,读取并打印
时间: 2023-06-06 21:08:59 浏览: 435
Msptest-python读取excel数据
Excel 中的数据可以使用 Python 的 pandas 库进行读取和处理。下面是一个读取 Excel 文件并打印所有数据的例子:
``` python
import pandas as pd
# 读取 Excel 文件
df = pd.read_excel('example.xlsx')
# 打印所有数据
print(df)
```
其中,`example.xlsx` 是要读取的 Excel 文件名。如果在不同的路径下,可以使用该文件的绝对路径。
阅读全文