Issue 29664: zip() python 3 documentation not working at all ! - Python tracker

Author: Muhammad Salem (Muhammad Salem)

Description : this code from the python documentation itself not working!

>>> x = [1, 2, 3]
>>> y = [4, 5, 6]
>>> zipped = zip(x, y)

this code is copied from the python 3 official documentation itself even though it is working for me I am using python 3.5.2 on ubuntu 16.04 LTS

Edited by Xtreak