Created
July 15, 2025 19:59
-
-
Save juanjoseexpositogonzalez/de5d83a66b7da4b9037d4073a234b6e2 to your computer and use it in GitHub Desktop.
List comprehension
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
| l = [num for num in range(101) if num%2] | |
| print(l) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment