I'm iterating over a dataframe and I want to add new elements to each row, so that I can add the new row to a second dataframe.
for index, row in df1.iterrows():
# I looking for somethis like this:
new_row = row.append({'column_name_A':10})
df2 = df2.append(new_row,ignore_index=True)