Re: tuple comparison to make one tuple

2011-06-09 Thread MikeKJ
Excellent thank you guys and thanks for the pointer to itertools -- View this message in context: http://old.nabble.com/tuple-comparison-to-make-one-tuple-tp31802229p31808134.html Sent from the django-users mailing list archive at Nabble.com. -- You received this message because you are

Re: tuple comparison to make one tuple

2011-06-08 Thread Jason Culverhouse
On Jun 8, 2011, at 9:41 AM, Tom Evans wrote: > On Wed, Jun 8, 2011 at 5:34 PM, MikeKJ wrote: >> >> I have 3 tuples of email addresses, I want to compare the 3 against each >> other to make a single tuple of email addresses with no duplicates, any >> ideas? > t1 = ( 'a...@b.com', 'b...@b.c

Re: tuple comparison to make one tuple

2011-06-08 Thread Tom Evans
On Wed, Jun 8, 2011 at 5:34 PM, MikeKJ wrote: > > I have 3 tuples of email addresses, I want to compare the 3 against each > other to make a single tuple of email addresses with no duplicates, any > ideas? >>> t1 = ( 'a...@b.com', 'b...@b.com', 'c...@b.com' ) >>> t2 = ( 'a...@b.com', 'a...@c.com'

tuple comparison to make one tuple

2011-06-08 Thread MikeKJ
I have 3 tuples of email addresses, I want to compare the 3 against each other to make a single tuple of email addresses with no duplicates, any ideas? -- View this message in context: http://old.nabble.com/tuple-comparison-to-make-one-tuple-tp31802229p31802229.html Sent from the django-users