Python zip() Syntax

It is used to map the similar index of multiple containers so that they can be used just using a single entity. 

Syntax :  zip(*iterators) 

Parameters : Python iterables or containers ( list, string etc ) 
Return Value : Returns a single iterator object.

zip() in Python

Python zip() method takes iterable containers and returns a single iterator object, having mapped values from all the containers. 

Similar Reads

Python zip() Syntax

It is used to map the similar index of multiple containers so that they can be used just using a single entity....

zip() in Python Examples

Python zip() with lists...