df = pd.DataFrame(np.arange(4).reshape(2, -1)) pd.concat([df, df.iloc[[0]]]) # df.iloc[[i]] ~ df pd.concat([df, df.iloc[0]]) # df.iloc[i] ~ series