Skip to content
Snippets Groups Projects
Commit a65515a9 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Typo/style

parent 92aced3f
No related branches found
No related tags found
No related merge requests found
...@@ -61,8 +61,8 @@ one. It contains an attribute called `PI`, and a function `add`. ...@@ -61,8 +61,8 @@ one. It contains an attribute called `PI`, and a function `add`.
Before we can use our module, we must `import` it. Importing a module in Before we can use our module, we must `import` it. Importing a module in
Python will make its contents available to the local scope. We can import the Python will make its contents available in the local scope. We can import the
contents of `mymodule` like so: contents of `numfuncs` like so:
``` ```
...@@ -235,7 +235,7 @@ in the following order: ...@@ -235,7 +235,7 @@ in the following order:
1. Built-in modules (e.g. `os`, `sys`, etc.). 1. Built-in modules (e.g. `os`, `sys`, etc.).
2. In the current directory or, if a script has been executed, in the directory 2. In the current directory or, if a script has been executed, in the directory
containing that script. containing that script.
3. In directories listed in the PYTHONPATH environment variable. 3. In directories listed in the `$PYTHONPATH` environment variable.
4. In installed third-party libraries (e.g. `numpy`). 4. In installed third-party libraries (e.g. `numpy`).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment