使用 dict()构造函数创建字典使用 dict()构造函数创建字典thisdict = dict(brand="Porsche", model="911", year=1963)# note that keywords are not string literals# note the use of equals rather than colon for the assignmentprint(thisdict)