Skip to content

Instantly share code, notes, and snippets.

@dannyhvc
Last active September 30, 2021 04:57
Show Gist options
  • Save dannyhvc/3501df18943b764731cd10815df3d2c0 to your computer and use it in GitHub Desktop.
Save dannyhvc/3501df18943b764731cd10815df3d2c0 to your computer and use it in GitHub Desktop.
index of instances
def index_of_instances(container, value_to_find):
return [i for i, x in enumerate(container) if x == value_to_find]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment