I am trying to generate new columns using the existing columns in the data frame. My dataframe has 60 columns . To need to generate 60 new columns based on the data in the data frame. These columns should only contain the sum. E.g
Index column_a column_b month
0. 1. 3. Jan
1. 2. 4. Feb
2. 3. 4 Match
Index column_a column_b month sum_a sum_b
0. 1 2. Jan. 6. 10
1. 2. 4. Feb. 6. 10
2. 3. 4 Match. 6. 10
Keep in mind that I need to iterate this for 60 columns. Would appreciate any help. Thanks