Assume I have list of tuples a=[(0,1),(2,0),(1,4)] and I want to return unique element of each two tuples as a new tuple. For example (0,1) and
a=[(0,1),(2,0),(1,4)]
(0,1)