Python Pandas concatenate a Series of strings into one string

You can join a string on the series directly:

In [3]:
' '.join(df['text'])

Out[3]:
'Hello world !'

Leave a Comment