Ajouter une colonne avec des pandas à valeur fixe

df['Name'] = 'abc' # will add the new column and set all rows to that value
Abdo Mosa