diff --git a/01-intro.html b/01-intro.html index 3e3112080..2cfd7e25b 100644 --- a/01-intro.html +++ b/01-intro.html @@ -650,7 +650,7 @@
Because matplotlib normally sets x and y axes limits to the min and max of our data (depending on data range)
@@ -627,7 +627,7 @@Because matplotlib interpolates (draws a straight line) between the points. One way to do avoid this is to use the Matplotlib @@ -734,7 +734,7 @@
The body of the loop is executed 6 times.
C gets printed because the first two conditions,
4 > 5
and 4 == 5
, are not true, but
@@ -763,7 +763,7 @@
There is a built-in
function abs
that returns the absolute value of a
@@ -787,7 +787,7 @@
Python will first execute the function add
with
a = 7
and b = 3
, and, therefore, print
@@ -1185,7 +1185,7 @@
Attempting to define the numbers
function results in
4. SyntaxError
. The defined parameters two
and
diff --git a/11-debugging.html b/11-debugging.html
index 1e48c129b..5b8bcb125 100644
--- a/11-debugging.html
+++ b/11-debugging.html
@@ -627,7 +627,7 @@
Because matplotlib normally sets x and y axes limits to the min and max of our data (depending on data range)
@@ -2105,7 +2105,7 @@Because matplotlib interpolates (draws a straight line) between the points. One way to do avoid this is to use the Matplotlib @@ -2213,7 +2213,7 @@
The body of the loop is executed 6 times.