dfs_subs dataframe contain multiindex one level is Question-0 and next level is (Score,..) and i have other dataframe which is having only one level.When i am doing table_1 = pd.concat([df_metadata, dfs_subs], axis=1, levels=0)
table_1 output is showing like below
but i want Question-0 should be one separate level instead of combined as one single column.
For example:



print (df_metadata.columns[:5].tolist())andprint (dfs_subs[:5].tolist())?