python给dataframe按序号添加列名
时间: 2023-05-22 19:01:24 浏览: 387
python 给DataFrame增加index行名和columns列名的实现方法
可以使用以下代码为DataFrame添加列名:
```python
import string
import pandas as pd
# 生成列名
columns = list(string.ascii_uppercase)[:5]
# 创建DataFrame
df = pd.DataFrame([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])
# 添加列名
df.columns = columns
print(df)
```
输出结果为:
```
A B C D E
0 1 2 3 4 5
1 6 7 8 9 10
```
阅读全文