Pandas dataframe

Hello everyone,
I want to convert this into Column can anyone help me out
image

if you add .reset_index() you would get the index content as a new column as expected…

for eg) df_output = df.reset_index()

1 Like

Thanks alot @vsuku,
You just solved my big problem

Glad to hear