8.A list stores three dictionaries each storing details (old price, new price, change). Write a Python program to
create a DataFrame from it. 

Solution :- 

import pandas as pd
data = [{‘OLD PRICE’:7800},
{‘New PRICE’:8000},
{‘CHANGE’:200}]
df = pd.DataFrame(data)
print(df)

Output :-