-
-
Save johnptmcdonald/e790523c14fc5f50971a0c1fb9b5a896 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
arr = [1, 2, 3, 4, 5, 6] | |
evens = [num for num in arr if num % 2 == 0] | |
print(evens) | |
# [2, 4, 6] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment