dataframe not appending

Solutions on MaxInterview for dataframe not appending by the best coders in the world

showing results for - "dataframe not appending"
Julian
08 Jun 2018
1#DF.append is not inplace, need to assign back
2df8 = df8.append([s] * 2, ignore_index=True)
3df8
4          A         B         C         D
50  value aa  value bb  value cc  value dd
61  value aa  value bb  value cc  value dd