diff --git a/01-run-quit.html b/01-run-quit.html index 900cbdddc..030294bb7 100644 --- a/01-run-quit.html +++ b/01-run-quit.html @@ -782,7 +782,7 @@
After creating the necessary tabs, you can drag one of the tabs to the center of a panel to move the tab to the panel; next you can @@ -847,7 +847,7 @@
Command mode has a grey border and Edit mode has a blue border. Use Esc and Return to switch between modes. You need @@ -1007,7 +1007,7 @@
This challenge integrates both the numbered list and bullet list. Note that the bullet list is indented 2 spaces so that it is inline with @@ -1048,7 +1048,7 @@
Python returns the output of the last calculation.
The Python code gets treated like Markdown text. The lines appear as if they are part of one contiguous paragraph. This could be useful to @@ -1128,7 +1128,7 @@
The notebook shows the equation as it would be rendered from LaTeX
equation syntax. The dollar sign, $
, is used to tell
diff --git a/03-types-conversion.html b/03-types-conversion.html
index 785b5986f..94ef6566a 100644
--- a/03-types-conversion.html
+++ b/03-types-conversion.html
@@ -715,7 +715,7 @@
It is a floating-point number (often abbreviated “float”). It is possible to find out by using the built-in function @@ -751,7 +751,7 @@
It is a float: integers are automatically converted to floats as necessary.
@@ -797,7 +797,7 @@The answers to the questions are:
We want the minimum number of surveys that reaches everyone once, which is the rounded up value of @@ -937,7 +937,7 @@
What do you expect this program to do? It would not be so
unreasonable to expect the Python 3 int
command to convert
@@ -1006,7 +1006,7 @@
Answer: 1 and 4
i
to
denote an imaginary number. However, from media reports it was an early
diff --git a/06-libraries.html b/06-libraries.html
index f0b230d1a..68d574c53 100644
--- a/06-libraries.html
+++ b/06-libraries.html
@@ -647,7 +647,7 @@ Using help(math)
we see that we’ve got
pow(x,y)
in addition to sqrt(x)
, so we could
@@ -691,7 +691,7 @@
The random module seems like it could help.
@@ -770,7 +770,7 @@Importing the math module (import math
)
sin
and pi
without the library name as prefix,
@@ -955,7 +955,7 @@ To read in a CSV, we use pd.read_csv
and pass the
filename 'data/gapminder_gdp_americas.csv'
to it. We also
@@ -791,7 +791,7 @@
data_americas
by executing data_americas.head()
which lets us view the
@@ -922,7 +922,7 @@ We need to specify the path to the file of interest in the call to
pd.read_csv
. We first need to ‘jump’ out of the folder
@@ -960,7 +960,7 @@
In order to write the DataFrame data_americas
to a file
called processed.csv
, execute the following command:
Seems the variability in this value is due to a sharp drop after 1972. Some geopolitics at play perhaps? Given the dominance of oil @@ -811,7 +811,7 @@
A good place to look is the documentation for the plot function - help(data_all.plot).
diff --git a/12-for-loops.html b/12-for-loops.html index 69fbb6de4..9cfc098df 100644 --- a/12-for-loops.html +++ b/12-for-loops.html @@ -681,7 +681,7 @@An IndentationError is a syntax error. Programs with syntax errors cannot be started. A program with a runtime error will start but an @@ -716,7 +716,7 @@