pandas dataframe 增加一个自增列

1.重建索引,以下操作会生成从0开始的新索引 

df = df.reset_index()

2.新增自增列

df['counter'] = range(len(df))

 

你可能感兴趣的:(python)