用python操作excel所有示例
时间: 2023-07-18 17:08:10 浏览: 94
以下是使用Python操作Excel的示例:
1. 安装必要的库
在操作Excel之前,需要先安装Python的pandas和openpyxl库。
```python
pip install pandas openpyxl
```
2. 读取Excel文件
```python
import pandas as pd
#读取Excel文件
df = pd.read_excel('example.xlsx')
#输出读取的数据
print(df)
```
3. 写入Excel文件
```python
import pandas as pd
#定义数据
data = {'姓名': ['张三', '李四', '王五'], '年龄': [20, 25, 30], '性别': ['男', '女', '男']}
#将数据转换为DataFrame格式
df = pd.DataFrame(data)
#将DataFrame写入Excel文件
df.to_excel('example.xlsx', index=False)
#输出写入的数据
print(df)
```
4. 更新Excel文件
```python
import pandas as pd
#读取Excel文件
df = pd.read_excel('example.xlsx')
#更新数据
df.loc[0, '年龄'] = 21
#将更新后的DataFrame写入Excel文件
df.to_excel('example.xlsx', index=False)
#输出更新后的数据
print(df)
```
5. 删除Excel文件中的数据
```python
import pandas as pd
#读取Excel文件
df = pd.read_excel('example.xlsx')
#删除第一行数据
df = df.drop(0)
#将更新后的DataFrame写入Excel文件
df.to_excel('example.xlsx', index=False)
#输出删除后的数据
print(df)
```
以上是Python操作Excel的基本示例,可以根据自己的需求进行修改和扩展。
阅读全文