Adding a dataframe to another dataframe

Adding a dataframe to another dataframe Pandas DataFrame append() method is used to append rows of one DataFrame to the end of the other DataFrame. After appending, it returns a new DataFrame object. The append() function does not change the source or original DataFrame. ................
................