Guest User

Untitled

a guest
Nov 24th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def a(b):
  2. for i in xrange(10):
  3. yield i+b
  4. def b(c):
  5. for i in xrange(10):
  6. yield i+c
  7.  
  8. def c():
  9. for i,x in zip(b(2),a(1)):
  10. print i,x
  11.  
  12. c()
Add Comment
Please, Sign In to add comment