String concatenation of two pandas columns

df['bar'] = df.bar.map(str) + " is " + df.foo

Leave a Comment