This my Answer to the stackoverflow question: Multiple Tuple to Two-Pair Tuple in Python?:
[(tuple[a], tuple[a+1]) for a in range(0,len(tuple),2)]
[(tuple[a], tuple[a+1]) for a in range(0,len(tuple),2)]