Created
July 21, 2018 18:28
-
-
Save vinaykudari/7bc6c746792ec6d083ce262a90c050f3 to your computer and use it in GitHub Desktop.
Iterators
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
#lis is an iterable | |
lis = [1,2,3] | |
#lis_iter is an iterator | |
lis_iter = iter(lis) | |
for i in range(len(lis)): | |
print(next(iterator)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment