Advertisement
ijontichy

enum.py

Dec 21st, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. def enum(start, inc):
  4.     i = start
  5.  
  6.     while True:
  7.         yield i
  8.         i += inc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement