I have a data frame with 5 columns, I only want to add the second and the third, but each point in the third column has to be multiplied by 3,
so I need to add a new column called
"Total score" which is df['Second'] + 3* df['Third']
I have tried with sum but I don't know how to indicate that I want weigh and select only two columns