Skip to content

Instantly share code, notes, and snippets.

@niconico25
Last active April 10, 2019 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niconico25/1891b38b380425037e97889972f55d43 to your computer and use it in GitHub Desktop.
Save niconico25/1891b38b380425037e97889972f55d43 to your computer and use it in GitHub Desktop.
# 偶数だけ取得します。
lst = [1, 2, 3, 4, 5, 6, 7]
new_lst = list(filter(lambda x: x % 2, lst))
print(new_lst)
# [1, 3, 5, 7]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment