Created
January 7, 2014 12:28
-
-
Save Rembane/8298605 to your computer and use it in GitHub Desktop.
The ugliness! :D
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
li = [...] | |
try: | |
while True: | |
c = li.next() | |
if condition(c): | |
break | |
except StopIteration: | |
# Not found... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment