vote up 1 vote down star

Is there a better way to do this in python, or rather: Is this a good way to do it?

x = ('a', 'b', 'c')
y = ('d', 'e', 'f')
z = ('g', 'e', 'i')

l = [x, y, z]

s = set([e for (_, e, _) in l])

I looks somewhat ugly but does what i need without writing a complex "get_unique_elements_from_tuple_list" function... ;)

edit: expected value of s is set(['b','e'])

flag
can you explain what you want using a definition instead of an example? – flybywire Aug 3 at 11:19

1 Answer

vote up 13 vote down check

That's fine, that's what sets are for. One thing I would change is this:

s = set(e[1] for e in l)

as it enhances readability. Note that I also turned the list comprehension into a generator expression; no need to create a temporary list.

link|flag
+1 "enhances readability" – Jarret Hardie Aug 3 at 11:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.