Skip to content

Instantly share code, notes, and snippets.

@ichsanputr
Created June 24, 2025 13:00
Show Gist options
  • Select an option

  • Save ichsanputr/f433a5f7b88f1f17dfe7e6e5a04226d7 to your computer and use it in GitHub Desktop.

Select an option

Save ichsanputr/f433a5f7b88f1f17dfe7e6e5a04226d7 to your computer and use it in GitHub Desktop.
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