python读取excel数据并清空空格
时间: 2024-02-17 14:31:24 浏览: 121
Msptest-python读取excel数据
可以使用Python中的pandas库来读取Excel数据,并使用strip()函数来去除字符串中的空格。
首先,需要安装pandas库,可以使用以下命令进行安装:
```
pip install pandas
```
接下来,可以使用以下代码读取Excel文件:
```python
import pandas as pd
# 读取Excel文件
df = pd.read_excel('file.xlsx')
# 清除空格
df = df.applymap(lambda x: x.strip() if isinstance(x, str) else x)
# 输出清除空格后的数据
print(df)
```
在以上代码中,applymap()函数将对DataFrame中的每个元素进行操作,如果元素是字符串类型,则使用strip()函数去除空格。最后,使用print()函数输出清除空格后的数据。
阅读全文