I just found that I can't assign like this:
df[['a','b','c']] = 'total'
or
df.loc[:, ['a','b','c']] = 'total
However, I can do
df['a'] = 'total'
df['b'] = 'total'
df['c'] = 'total'
or
df['a'] = df['b'] = df['c'] = 'total'
Am I missing something?