Skip to content

Instantly share code, notes, and snippets.

@devhero
Last active December 13, 2018 11:20
Show Gist options
  • Save devhero/2aa9613bc817221167d4a8865fa7f97e to your computer and use it in GitHub Desktop.
Save devhero/2aa9613bc817221167d4a8865fa7f97e to your computer and use it in GitHub Desktop.
# every item
all(item.prop == '' for item in items)
# at least one item
any(item.prop == '' for item in items)
# any item of a is in b
any(any(x==y for y in b) for x in a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment