我已经在Python Pandas中创建了一个数据框,如下所示:import pandas as pdimport os cols = ('Name','AGE','SAL')df = pd.read_csv("C:\\Users\\agupt80\\Desktop\\POC\\Python\\test.csv",names = cols)print(df)当我打印数据框时,我得到以下输出: Name AGE SAL0 Amit 32 1001 gupta 33 2002 hello 34 3003 Amit 33 100请帮助让我知道,如何在列标题后插入连字符“-”,如下所示: Name AGE SAL------------------------0 Amit 32 1001 gupta 33 2002 hello 34 3003 Amit 33 100
3 回答
翻翻过去那场雪
TA贡献2065条经验 获得超13个赞
你需要,
#shift the values one level
df=df.shift(1)
#fill the first row with hyphen
df.iloc[0]='----'
output
Name AGE SAL
---- ---- ----
Amit3 2 100
gupta 33 200
hello 34 300
添加回答
举报
0/150
提交
取消