diff --git a/docs/writing/style.rst b/docs/writing/style.rst index e48956a2e..33339ff9f 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -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