python pandas 添加列名
时间: 2023-06-11 13:04:30 浏览: 102
python之pandas用法大全
要添加列名,可以使用DataFrame的columns属性,如下所示:
```python
import pandas as pd
# 创建一个DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
# 添加列名
df.columns = ['col1', 'col2']
# 打印结果
print(df)
```
输出结果为:
```
col1 col2
0 1 4
1 2 5
2 3 6
```
阅读全文