The anwser for Dictionary - Excercise 1 is

dict1 = {'soap':10,'bread':5,'shampoo':8}
dict2 = {'soap':20.50,'bread':25.99,'shampoo':80}
print('The shop have %s quantities of %s which cost %s USD each'%('soap',dict1['soap'],dict2['soap']))
print('The shop have %s quantities of %s which cost %s USD each'%('bread',dict1['bread'],dict2['bread']))
print('The shop have %s quantities of %s which cost %s USD each'%('shampoo',dict1['shampoo'],dict2['shampoo']))