Last active
July 21, 2018 22:04
-
-
Save vinaykudari/69ca7dda91249856a7e582b6b24eb920 to your computer and use it in GitHub Desktop.
List Comprehension Generator
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 = (i**2 for i in range(5)) | |
>> type(list) | |
<class 'generator'> | |
>> list(lis) | |
[0, 1, 4, 9, 16] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment