Skip to content

Instantly share code, notes, and snippets.

Created February 25, 2015 19:42
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 anonymous/a74c06041cd73e1ff6de to your computer and use it in GitHub Desktop.
Save anonymous/a74c06041cd73e1ff6de to your computer and use it in GitHub Desktop.
>>> hosts = [('127.0.0.1', 6010), ('127.0.0.1', 6011),
... ('127.0.0.1', 6012)]
>>> [x[0] for x in hosts]
['127.0.0.1', '127.0.0.1', '127.0.0.1']
>>> hosts[0]
('127.0.0.1', 6010)
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment