Skip to content

Instantly share code, notes, and snippets.

@RX14
Created January 11, 2015 12:35
Show Gist options
  • Select an option

  • Save RX14/b96d79836fb17c010b40 to your computer and use it in GitHub Desktop.

Select an option

Save RX14/b96d79836fb17c010b40 to your computer and use it in GitHub Desktop.
[i for i, ltr in enumerate(s) if ltr == ch]
#same as
list = []
for i, ltr in enumerate(s):
if ltr == ch:
list.add(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment