Agregue una columna con pandas de valor fijo
df['Name'] = 'abc' # will add the new column and set all rows to that value
Abdo Mosa
df['Name'] = 'abc' # will add the new column and set all rows to that value