INPUT:
`videoshop=[]
for i in range(0,3,1):
movie={}
print("Enter Movie Name")
movie["Name"]=raw_input("Enter Here: ")
print("Enter Movie Duration")
movie["Duration"]=raw_input("Enter Here: ")
print("Enter Movie Age")
movie["Age"]=raw_input("Enter Here: ")
print("Enter Movie Price")
movie["Price"]=raw_input("Enter Here: ")
videoshop.append(movie)
print(videoshop)`
OUTPUT
`[{'Duration': '51', 'Age': '16+', 'Name': 'Jeff', 'Price': '$99'}, {'Duration':
'52', 'Age': '14', 'Name': 'Darm', 'Price': '$99'}, {'Duration': '56', 'Age': '18+',
'Name': 'Shaw', 'Price': '$102'}]`
QUESTION
I need the output to show [{'name':'jeff','Duration':'51', 'Age':'16+','Price':'$99'}]
I have tried sorting the objects but it has failed with this code...