Example 1: zip python
>>> x = [1, 2, 3]
>>> y = [4, 5, 6]
>>> zipped = zip(x, y)
>>> list(zipped)
[(1, 4), (2, 5), (3, 6)]
>>> x2, y2 = zip(*zip(x, y))
>>> x == list(x2) and y == list(y2)
True
Example 2: python zip a list of lists
list(zip(*[[list], [of], [lists]]))
list_of_lists = [[1,2], [3,4], [5,6]]
list(zip(*list_of_lists))
--> [(1, 3, 5), (2, 4, 6)]
list_of_lists = [[1,2], ['a',4], [5,6,7]]
list(zip(*list_of_lists))
--> [(1, 'a', 5), (2, 4, 6)]
Example 3: zip python
number_list = [1, 2, 3]
str_list = ['one', 'two', 'three']
result = zip()
result_list = list(result)
print(result_list)
result = zip(number_list, str_list)
result_set = set(result)
print(result_set)
>>>[]
{(2, 'two'), (3, 'three'), (1, 'one')}
Example 4: zip listas python
>>> meses = ["marzo", "abril", "mayo"]
>>> estados = ["ventoso", "lluvioso", "florido y hermoso"]
>>> for mes, estado in zip(meses, estados):
... print(mes, estado)
...
marzo ventoso
abril lluvioso
mayo florido y hermoso