Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Last active May 29, 2016 23:34
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 chuck0523/9a4788949edf63ffa57ce5b880e07d15 to your computer and use it in GitHub Desktop.
Save chuck0523/9a4788949edf63ffa57ce5b880e07d15 to your computer and use it in GitHub Desktop.
a = [i for i in 'test']
b = [i for i in 'tgst']
print([i for i, j in zip(a, b) if i == j]) # ['t', 's', 't']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment