I'm concatenating three tuples from a csv but i´m thinking if there is any way to do it with a maximum lenght. I´m doing this:
df = pd.read_csv(FILE_NAME, header = 0)
df['all'] = df['Header'] + df['Subtitle'] + df['Text']
I want df['all] to be at most 500 characters
Thank you in advice