Created
February 15, 2021 01:19
-
-
Save oguzalb/e9dee5c3a7bef1d3296099c53b5a34d2 to your computer and use it in GitHub Desktop.
This file contains 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
generator1 = (a for a in [1, 2, 3, 4]) | |
generator2 = (a for a in [1, 2, 3]) | |
for x1, x2 in zip(generator1, generator2): | |
print(x1, x2) | |
remainder = next(generator1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment