原文地址:http://docs.pythontab.com/python/python3.4/datastructures.html#tut-tuples 在字典中循环时,关键字和对应的值可以使用 iteritems() 方法同时解读出来. knights = {'gallahad': 'the pure', 'robin': 'the brave'} for k,v in knights.items(): print(k,v) -------输出如下---------------------…
当在字典中循环时,用 items() 方法可将关键字和对应的值同时取出 >>> knights = {'gallahad': 'the pure', 'robin': 'the brave'} >>> for k, v in knights.items(): ... print(k, v) ... gallahad the pure robin the brave 当在序列中循环时,用 enumerate() 函数可以将索引位置和其对应的值同时取出 >>&g…