df.to_excel(r’C:\Users\Administrator\Desktop\Temp\1.xlsx’)
**指定索引前后,效果对比:**
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/70990a8563b74019b3a7da7fa60cafde.png)
### 2.2 读取 Excel:read\_excel()
import pandas as pd
1.读取 excel。默认读取第一个 sheet
student = pd.read_excel(r’C:\Users\Administrator\Desktop\Temp\1.xlsx’)
2.读取常用属性
print(student.shape) # 形状(行,列)
print(student.columns) # 列名
**读取指定 sheet:**
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/d76e7d099e9f44dda630075f8832ddae.png)
import pandas as pd
1.读取指定 sheet 的 excel,以下两种方式等同
student = pd.read_excel(r’C:\Users\Administrator\Desktop\Temp\1.xlsx’, sheet_name=1)
student = pd.read_excel(r’C:\Users\Administrator\Desktop\Temp\1.xlsx’, sheet_name=‘Sheet2’)
2.读取常用属性
print(student.shape) # 形状(行,列)
print(student.columns) # 列名
#### 2.2.1 header:标题的行索引
**场景1:默认。第一行为标题(行索引为 0,即:header=0)**
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/7fffc196eef646dea96aa9563e44506b.png)
import pandas as pd
文件路径
filePath = r’C:\Users\Administrator\Desktop\Temp\1.xlsx’
1.读取 excel(默认第 1 行为标题,行索引为 0,即:header=0)
student = pd.read_excel(filePath)
print(student.columns)
Index([‘ID’, ‘Name’, ‘Age’, ‘Grade’], dtype=‘object’)
**场景2:指定第 n 行为标题**
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/d0ea3a4faf0547c88b9baf26b46717a3.png)
import pandas as p