Cómo resumir ciertas columnas fila en python
df['total']=df.loc[:,list_name].sum(axis=1)
Graceful Gorilla
df['total']=df.loc[:,list_name].sum(axis=1)