I would like to concatenate all columns in a pandas dataframe separated by spaces (" "). Is there a more pythonic way other than df['newcolumn'] = df['a'] + " " df['b'] + " " ...
a b c combined
1 2 3 1 2 3
a d 3 a d 3
p 0 k p 0 k