I have a Pandas Series of lists of strings:
0 [slim, waist, man] 1 [slim, waistline] 2
You may also try:
combined = [] for i in s.index: combined = combined + s.iloc[i] print(combined) s = pd.Series(combined) print(s)
output:
['slim', 'waist', 'man', 'slim', 'waistline', 'santa'] 0 slim 1 waist 2 man 3 slim 4 waistline 5 santa dtype: object