thisdict = { "brand": "Ford", "electric": False, "year": 1964, "colors": ["red", "white", "blue"] } print(thisdict["electric"]) print(len(thisdict)) print(type(thisdict))