python make tuple from 2 lists code example Example: python list of tuples to two lists >>> zip(*[(1, 2), (3, 4), (5, 6)]) [(1, 3, 5), (2, 4, 6)]