Skip to content

Instantly share code, notes, and snippets.

@tiran
Created July 30, 2014 12:25
Show Gist options
  • Save tiran/d8a8dec9408df5e31a54 to your computer and use it in GitHub Desktop.
Save tiran/d8a8dec9408df5e31a54 to your computer and use it in GitHub Desktop.
# http://nedbatchelder.com//blog/201407/creative_looping.html
>>> l = [1, 2, 3, 4]
>>> it = iter(l)
>>> while True:
... try:
... print(next(it))
... except StopIteration:
... break
...
1
2
3
4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment