how to group by 3 columns in pandas and then take sum of each group code example
Example 1: pandas sum multiple columns groupby
df.groupby(['col1','col2']).agg({'col3':'sum','col4':'sum'}).reset_index()
Example 2: pandas python group by for one column and sum another column
df.groupby(['A','C'], as_index=False)['B'].sum()