Merge pull request #323 from AloisMahdal/i322

Clarify presence of a two-element tuple.
This commit is contained in:
2013-10-13 22:58:06 -07:00
+2 -1
View File
@@ -273,7 +273,8 @@ Unpacking
~~~~~~~~~
If you know the length of a list or tuple, you can assign names to its
elements with unpacking:
elements with unpacking. For example, since ``enumerate()`` will provide
a tuple of two elements for each item in list:
.. code-block:: python