Skip to content

Commit 4489b51

Browse files
committed
Update documentation
1 parent c662f25 commit 4489b51

5 files changed

Lines changed: 5 additions & 42 deletions

File tree

_sources/chap00.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@
171171
"\n",
172172
"If you are teaching with this book, here are some resources you might find useful.\n",
173173
"\n",
174-
"* You can find notebooks with solutions to the exercises from <https://allendowney.github.io/ThinkPython>, along with links to the additional resources below.\n",
174+
"* You can find notebooks with solutions to the exercises at <https://allendowney.github.io/ThinkPython>, along with links to the additional resources below.\n",
175175
"\n",
176-
"* Quizzes for each chapter, and a summative quiz for the whole book, are available from [COMING SOON]\n",
176+
"* Quizzes for each chapter, and a summative quiz for the whole book, are available on request.\n",
177177
"\n",
178178
"* *Teaching and Learning with Jupyter* is an online book with suggestions for using Jupyter effectively in the classroom. You can read the book at <https://jupyter4edu.github.io/jupyter-edu-book>\n",
179179
"\n",

_sources/chap10.ipynb

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -809,29 +809,6 @@
809809
"The time it takes to find a key in a dictionary is almost constant -- regardless of the number of items."
810810
]
811811
},
812-
{
813-
"cell_type": "code",
814-
"execution_count": 63,
815-
"id": "aa079ed3",
816-
"metadata": {},
817-
"outputs": [
818-
{
819-
"data": {
820-
"text/plain": [
821-
"{'a': 3, 'b': 2}"
822-
]
823-
},
824-
"execution_count": 63,
825-
"metadata": {},
826-
"output_type": "execute_result"
827-
}
828-
],
829-
"source": [
830-
"d = {'a': 1, 'b': 2}\n",
831-
"d['a'] = 3\n",
832-
"d"
833-
]
834-
},
835812
{
836813
"cell_type": "markdown",
837814
"id": "b3bfa8a5",

chap00.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,8 @@ <h2>Getting started<a class="headerlink" href="#getting-started" title="Link to
479479
<h2>Resources for Teachers<a class="headerlink" href="#resources-for-teachers" title="Link to this heading">#</a></h2>
480480
<p>If you are teaching with this book, here are some resources you might find useful.</p>
481481
<ul class="simple">
482-
<li><p>You can find notebooks with solutions to the exercises from <a class="reference external" href="https://allendowney.github.io/ThinkPython">https://allendowney.github.io/ThinkPython</a>, along with links to the additional resources below.</p></li>
483-
<li><p>Quizzes for each chapter, and a summative quiz for the whole book, are available from [COMING SOON]</p></li>
482+
<li><p>You can find notebooks with solutions to the exercises at <a class="reference external" href="https://allendowney.github.io/ThinkPython">https://allendowney.github.io/ThinkPython</a>, along with links to the additional resources below.</p></li>
483+
<li><p>Quizzes for each chapter, and a summative quiz for the whole book, are available on request.</p></li>
484484
<li><p><em>Teaching and Learning with Jupyter</em> is an online book with suggestions for using Jupyter effectively in the classroom. You can read the book at <a class="reference external" href="https://jupyter4edu.github.io/jupyter-edu-book">https://jupyter4edu.github.io/jupyter-edu-book</a></p></li>
485485
<li><p>One of the best ways to use notebooks is live coding, where an instructor writes code and students follow along in their own notebooks. To learn about live coding – and get other great advice about teaching programming – I recommend the instructor training provided by The Carpentries, at <a class="reference external" href="https://carpentries.github.io/instructor-training">https://carpentries.github.io/instructor-training</a></p></li>
486486
</ul>

chap10.html

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -706,20 +706,6 @@ <h2><span class="section-number">10.2. </span>Creating dictionaries<a class="hea
706706
<p>This function takes less than one hundredth of a second, so it’s about 10,000 times faster than the previous version.</p>
707707
<p>In general, the time it takes to find an element in a list is proportional to the length of the list.
708708
The time it takes to find a key in a dictionary is almost constant – regardless of the number of items.</p>
709-
<div class="cell docutils container">
710-
<div class="cell_input docutils container">
711-
<div class="highlight-ipython3 notranslate"><div class="highlight"><pre><span></span><span class="n">d</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;a&#39;</span><span class="p">:</span> <span class="mi">1</span><span class="p">,</span> <span class="s1">&#39;b&#39;</span><span class="p">:</span> <span class="mi">2</span><span class="p">}</span>
712-
<span class="n">d</span><span class="p">[</span><span class="s1">&#39;a&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="mi">3</span>
713-
<span class="n">d</span>
714-
</pre></div>
715-
</div>
716-
</div>
717-
<div class="cell_output docutils container">
718-
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>{&#39;a&#39;: 3, &#39;b&#39;: 2}
719-
</pre></div>
720-
</div>
721-
</div>
722-
</div>
723709
</section>
724710
<section id="a-collection-of-counters">
725711
<h2><span class="section-number">10.4. </span>A collection of counters<a class="headerlink" href="#a-collection-of-counters" title="Link to this heading">#</a></h2>

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)