I am trying to append an empty row at the end of dataframe but unable to do so, even trying to understand how pandas work with append function and still not getting it.
The code below worked for me.
df.append(pd.Series([np.nan]), ignore_index = True)