This is my current line:
tableau_indic_final = pd.concat( [tableau_indic['code_Mono'], tableau_indic['Nom_medicament'], tableau_indic['Indications'].str.split(';', expand=True).add_prefix('Indication')], axis=1 )
I realized afterwards that I also need to split when there is a ","
So I want the split to happen every time I encounter a ";" OR a ","