我在python中以多少方式遍历字典?
答案 0 :(得分:1)
很多方法!
testdict = {"bob" : 0, "joe": 20, "kate" : 73, "sue" : 40}
for items in testdict.items():
print (items)
for key in testdict.keys():
print (key, testdict[key])
for item in testdict.iteritems():
print item
for key in testdict.iterkeys():
print (key, testdict[key])
这是一些,但这开始从这些简单的方式转变为更复杂的东西。所有代码都经过测试。
答案 1 :(得分:0)
答案 2 :(得分:0)
http://docs.python.org/tutorial/datastructures.html#looping-techniques
>>> knights = {'gallahad': 'the pure', 'robin': 'the brave'}
>>> for k, v in knights.iteritems():
... print k, v
...
gallahad the pure
robin the brave