Example 6.8. Introducing the for Loop. >>> li = ['a', 'b', 'e'] >>> for s in li: 1 ... print s 2 a b e >>> print ...
www.diveintopython.net