Created
June 24, 2025 13:00
-
-
Save ichsanputr/f433a5f7b88f1f17dfe7e6e5a04226d7 to your computer and use it in GitHub Desktop.
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
| numbers = [1, 2, 3, 4, 5, 6] | |
| even_sum = sum(x for x in numbers if x % 2 == 0) | |
| print(even_sum) # 결과: 12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment