Adding a row to a Pandas DataFrame results in a new DataFrame with the appended row.
Solution for How to add a row to a Pandas DataFrame in Python : You can use pandas.DataFrame.loc to add a row to a DataFrame Use pandas.DataFrame.loc with the syntax [index] = [row] where index is an integer and row is the new row to add.