df.append() is not appending to the DataFrame
问题 I formulated this question about adding rows WITH index, but it is not yet clear to me how/why this happens when there are no indexes: columnsList=['A','B','C','D'] df8=pd.DataFrame(columns=columnsList) L=['value aa','value bb','value cc','value dd'] s = pd.Series(dict(zip(df8.columns, L))) df8.append(s,ignore_index=True) df8.append(s,ignore_index=True) I EXPECT HERE A 2X4 DATAFRAME. nevertheless no values where added, nor an error occurred. print(df8.shape) #>>> (0,4) Why is the series not