pd append row with index code example
Example 1: append one row to pandas dataframe
df = df.append({'index1': value1, 'index2':value2,...}, ignore_index=True)
Example 2: how to append a dataframe to another dataframe in pandas
# all_res is list of DataFrames : [ dataframe, dataframe, ... ]
df_res = pd.concat(all_res)