combiner la colonne dans CSV Python Pandas

df['period'] = df[['Year', 'quarter', ...]].agg('-'.join, axis=1)
Selfish Seal