Kaydet (Commit) fa0123b4 authored tarafından Georg Brandl's avatar Georg Brandl

#6084: fix example.

üst 5a8d7eb7
...@@ -1413,7 +1413,7 @@ available. They are listed here in alphabetical order. ...@@ -1413,7 +1413,7 @@ available. They are listed here in alphabetical order.
>>> zipped >>> zipped
[(1, 4), (2, 5), (3, 6)] [(1, 4), (2, 5), (3, 6)]
>>> x2, y2 = zip(*zipped) >>> x2, y2 = zip(*zipped)
>>> x == x2, y == y2 >>> x == list(x2) and y == list(y2)
True True
.. versionadded:: 2.0 .. versionadded:: 2.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment