Dict1 = {"apple":"poome",
         "banana":"banane",
         "pear":"poire",
         "colors": ["red", "white", "blue"],
         "fruits":True}
print(type(Dict1))
#<calss 'dict'>
print (Dict1["pear"])
#poire