04.pandas 增加一行数据

在第一行增加索引值:


df.loc[-1] = df.columns.tolist()

df.index = df.index + 1df.sort_index(inplace=True)

df.columns = ['class','星期一','星期二','星期三','星期四','星期五','星期六','星期日']

你可能感兴趣的:(04.pandas 增加一行数据)