Appending column totals to a Pandas DataFrame January 22, 2023 by Tarik To add a Total column which is the sum across the row: df['Total'] = df.sum(axis=1)