逐一打印字典中的所有值逐一打印字典中的所有值thisdict = { "brand": "Porsche", "model": "911", "year": 1963}for x in thisdict: print(thisdict[x])