過眼云煙123
2020-09-25 21:18
>>> d = {'Alice': [50, 61, 66], 'Bob': [80, 61, 66], 'Candy': [88, 75, 90]}
>>> for key in d:
... value=d[key]
... print(key,value)
>>> d = {'Alice': [50, 61, 66], 'Bob': [80, 61, 66], 'Candy': [88, 75, 90]}
>>> for items in d:
... value=d[items]
... print(items,value)
这样是可以的,你是不是有缩进什么的问题,报的什么错。
Python3 入门教程(新版)
154149 学习 · 1075 问题
相似问题