Reset Index of Pandas Dataframe Without Adding Index as a Column
Python
Pass drop=True as a parameter into the reset_index function
1| df = df.reset_index(drop=True)
142
127
122
115