pandas如何设置excel中所有内容都靠左
时间: 2023-06-09 08:06:00 浏览: 735
Python pandas如何向excel添加数据
?可以使用pandas中的style功能来设置excel中所有内容都靠左。具体代码如下:
```python
import pandas as pd
# 读取excel文件
df = pd.read_excel('your_file.xlsx')
# 设置样式,所有内容左对齐
style = df.style.set_properties(**{'text-align': 'left'})
# 将样式应用到excel文件中
style.to_excel('your_file.xlsx', index=False)
```
这样就可以将excel中所有内容都靠左了。
阅读全文