What is zip () function in Python ?
- In python zip () method takes container or iterable and returns a single iterator object, having mapped values from all the containers.
- Zip () method is used tomap the similar index of multiple containers so that they can be used just using a single entity.
- It returns a single iterator object, having mapped values from all the containers.
For example, in zip two lists,
Output

Table Of Content
For example, in zip enumerate,
Output

For example, in zip Dictionary,
Output
