I\'m trying to combine the columns of a dataframe like the following
df[\'new\'] = df[\'a\'].astype(str) + \':\' + df.b.astype(str) + \' \' + df.c.astype(str)