在Python中有六种内建的序列:列表.元组.字符串.Unicode字符串.buffer对象和xrange对象.在这里暂时只讨论字符串.列表和元组的遍历. 一. 序列遍历 序列有两种遍历:一种通过值 另外一种通过索引 1.1 值遍历:s='abc'for x in s: print x z=('andy','leaf')for x in z: print x z={'tree','leaf'}for x in z: print x 1.2 索引遍历: l='abcd'for x in range…