Advertisement
rfmonk

itertools_count.py

Jan 16th, 2014
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3.  
  4. from itertools import *
  5.  
  6. for i in izip(count(1), ['a', 'b', 'c']):
  7.     print i
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement