append dictionary to data frame

You don’t assign the value to the result.

output = pd.DataFrame()
output = output.append(dictionary, ignore_index=True)
print(output.head())

Leave a Comment