add a dataframe to an empty dataframe with specific column names code example
Example 1: initialize pandas dataframe with column names
column_names = ["a", "b", "c"]
df = pd.DataFrame(columns = column_names)
Example 2: append a dataframe to an empty dataframe
df = df.append(<dataframe_to_be_appended>)