在Python中,迭代是通过for ... in来实现.只要是可迭代的对象都可以用for ... in来进行历遍. 常用的有list.tuple.dict等.举例如下: 列表的迭代: L=[1,2,3,4,5,6,7] for item in L: print(item) 结果输出: 字典的迭代:下面的例子是迭代key,也可以迭代value D={'A':1,'B':2,'C':3,'D':4,'E':5,'F':6,'G':7} for key in D: print(key) 输出结果: 字…