
29 Jan
2013
29 Jan
'13
1:53 p.m.
|>>> def notyet(cond) : if cond : raise StopIteration return True
|>>> list(x for x in range(100) if notyet(x>10)) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]