Commit 76349471 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub

bpo-31454: Include information about "import X as Y" in Modules tutorial (GH-4041)

(cherry picked from commit fbee8824)
Co-authored-by: default avatarMario Corchero <mariocj89@gmail.com>
parent 07c13eee
...@@ -108,6 +108,25 @@ Note that in general the practice of importing ``*`` from a module or package is ...@@ -108,6 +108,25 @@ Note that in general the practice of importing ``*`` from a module or package is
frowned upon, since it often causes poorly readable code. However, it is okay to frowned upon, since it often causes poorly readable code. However, it is okay to
use it to save typing in interactive sessions. use it to save typing in interactive sessions.
If the module name is followed by :keyword:`as`, then the name
following :keyword:`as` is bound directly to the imported module.
::
>>> import fibo as fib
>>> fib.fib(500)
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
This is effectively importing the module in the same way that ``import fibo``
will do, with the only difference of it being available as ``fib``.
It can also be used when utilising :keyword:`from` with similar effects::
>>> from fibo import fib as fibonacci
>>> fibonacci(500)
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
.. note:: .. note::
For efficiency reasons, each module is only imported once per interpreter For efficiency reasons, each module is only imported once per interpreter
......
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