逐一打印字典中的所有值

  1. thisdict = {
  2. "brand": "Porsche",
  3. "model": "911",
  4. "year": 1963
  5. }
  6. for x in thisdict:
  7. print(thisdict[x])