Skip to content

Instantly share code, notes, and snippets.

@Visgean
Created March 16, 2010 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Visgean/334368 to your computer and use it in GitHub Desktop.
Save Visgean/334368 to your computer and use it in GitHub Desktop.
def pseudoRange(numberOfCycles):
i = 0
while i < numberOfCycles:
i += 1
yield i
for i in pseudoRange(4):
print i
if i == 2:
print "Oh, i found number two"
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment