to_append = [5, 6] a_series = pd.Series(to_append, index = df.columns) df = df.append(a_series, ignore_index=True)

Read more of this post