From 27d291cf19ca6e37b43d0ae8a0db666dd75c15e7 Mon Sep 17 00:00:00 2001 From: bow <bow@bow.web.id> Date: Mon, 5 Aug 2013 23:33:57 +0200 Subject: [PATCH] Simplify imports introduction and small tweak on assignment --- more-python.ipynb | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/more-python.ipynb b/more-python.ipynb index bfd1316..ab511c8 100644 --- a/more-python.ipynb +++ b/more-python.ipynb @@ -798,12 +798,7 @@ "\n", "If a script is called `script.py`, then we use `import script`. This gives us access to the objects defined in `script.py` by prefixing them with `script` and a dot.\n", "\n", - "We can also have the following directory structure:\n", - "\n", - " my_module/\n", - " \u2514\u2500\u2500 __init__.py\n", - "\n", - "and do an `import my_module`." + "Keep in mind that this is not the only way to import Python modules. Refer to the Python documentation to find out more ways to do imports." ] }, { @@ -2459,7 +2454,7 @@ "\n", "### Hints\n", "\n", - "1. FASTA files have two types of lines: header lines starting with a `>` character and sequence lines. We only want to use the sequence line.\n", + "1. FASTA files have two types of lines: header lines starting with a `>` character and sequence lines. We are only concerned with the sequence line.\n", "2. Read the string functions documentation.\n", "3. Read the documentation for built in functions.\n", "\n", -- GitLab