I have a list containing strings that I want to separate with a '|'. The problem I am facing is that creating a pandas series only shows the first few observations followed by ... Is there something I can do to avoid that? Thanks
import pandas as pd
names = pd.Series([['james', 'han', 'sam', 'john', 'dan',
'greg', 'adam', 'ben', 'johan', 'asesh', 'kofi']])
name_list = names.str.join('|').to_string(index=False)