**Instance of the original version** ```python df['A'].str.cat(df['B'], sep=' ') ``` **Instance of the faster version** ```python df['A'] + ' ' + df['B'] ```