Skip to content

Commit 2e00f36

Browse files
committed
publish 0.10.1
1 parent 999817c commit 2e00f36

File tree

91 files changed

+1114
-338
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+1114
-338
lines changed

docs/.buildinfo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 46a9f64149c39e15eeb288d32922ea4b
3+
config: cf568778e33acef99aacc4cf088e60da
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/.doctrees/environment.pickle

7.32 KB
Binary file not shown.

docs/.doctrees/intro.doctree

878 Bytes
Binary file not shown.

docs/Module1_GettingStartedWithPython/Exercises/Informal_Intro_Python.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Exercises &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>Exercises &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../../genindex.html"/>
3939
<link rel="search" title="Search" href="../../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../../index.html"/>
4141

4242

4343
<script src="../../_static/js/modernizr.min.js"></script>
@@ -66,7 +66,7 @@
6666

6767

6868
<div class="version">
69-
0.10.0
69+
0.10.1
7070
</div>
7171

7272

@@ -290,7 +290,7 @@ <h2>Doing Simple Arithmetic (not graded)<a class="headerlink" href="#Doing-Simpl
290290
<script type="text/javascript">
291291
var DOCUMENTATION_OPTIONS = {
292292
URL_ROOT:'../../',
293-
VERSION:'0.10.0',
293+
VERSION:'0.10.1',
294294
COLLAPSE_INDEX:false,
295295
FILE_SUFFIX:'.html',
296296
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/GettingStartedWithPython.html

+15-11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Introducing the Python Programming Language &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>Introducing the Python Programming Language &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141
<link rel="up" title="Module 1: Getting Started with Python" href="../module_1.html"/>
4242
<link rel="next" title="Installing Python" href="Installing_Python.html"/>
4343
<link rel="prev" title="A Quick Guide to Formatting" href="SiteFormatting.html"/>
@@ -69,7 +69,7 @@
6969

7070

7171
<div class="version">
72-
0.10.0
72+
0.10.1
7373
</div>
7474

7575

@@ -367,17 +367,21 @@ <h2>Why Python?<a class="headerlink" href="#Why-Python?" title="Permalink to thi
367367
likely the <a class="reference external" href="https://cacm.acm.org/blogs/blog-cacm/176450-python-is-now-the-most-popular-introductory-teaching-language-at-top-u-s-universities/fulltext">most popular introductory language at
368368
universities</a>.
369369
First and foremost, its syntax is designed to be intuitive and readable.
370-
For example, the following Python code:</p>
371-
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="k">print</span><span class="p">(</span><span class="s2">&quot;Hello world&quot;</span><span class="p">)</span>
370+
For example, the following Python code sums the numbers 0-9, and prints
371+
the result:</p>
372+
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="n">a</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">3</span><span class="p">,</span> <span class="mi">4</span><span class="p">,</span> <span class="mi">5</span><span class="p">,</span> <span class="mi">6</span><span class="p">,</span> <span class="mi">7</span><span class="p">,</span> <span class="mi">8</span><span class="p">,</span> <span class="mi">9</span><span class="p">]</span>
373+
<span class="k">print</span><span class="p">(</span><span class="nb">sum</span><span class="p">(</span><span class="n">a</span><span class="p">))</span>
372374
</pre></div>
373375
</div>
374-
<p>produces the same result as the less-obvious and lengthier C++ code:</p>
376+
<p>This can be reproduced by the following C++ code, which is arguably
377+
less-intuitive:</p>
375378
<div class="highlight-cpp"><div class="highlight"><pre><span></span><span class="cp">#include</span> <span class="cpf">&lt;iostream&gt;</span><span class="cp"></span>
379+
<span class="cp">#include</span> <span class="cpf">&lt;vector&gt;</span><span class="cp"></span>
380+
<span class="cp">#include</span> <span class="cpf">&lt;numeric&gt;</span><span class="cp"></span>
376381

377-
<span class="kt">int</span> <span class="nf">main</span><span class="p">()</span>
378-
<span class="p">{</span>
379-
<span class="n">std</span><span class="o">::</span><span class="n">cout</span> <span class="o">&lt;&lt;</span> <span class="s">&quot;Hello world&quot;</span> <span class="o">&lt;&lt;</span> <span class="n">std</span><span class="o">::</span><span class="n">endl</span><span class="p">;</span>
380-
<span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
382+
<span class="kt">int</span> <span class="nf">main</span><span class="p">()</span> <span class="p">{</span>
383+
<span class="n">std</span><span class="o">::</span><span class="n">vector</span><span class="o">&lt;</span><span class="kt">int</span><span class="o">&gt;</span> <span class="n">a</span> <span class="o">=</span> <span class="p">{</span><span class="mi">0</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">3</span><span class="p">,</span> <span class="mi">4</span><span class="p">,</span> <span class="mi">5</span><span class="p">,</span> <span class="mi">6</span><span class="p">,</span> <span class="mi">7</span><span class="p">,</span> <span class="mi">8</span><span class="p">,</span> <span class="mi">9</span><span class="p">};</span>
384+
<span class="n">std</span><span class="o">::</span><span class="n">cout</span> <span class="o">&lt;&lt;</span> <span class="n">std</span><span class="o">::</span><span class="n">accumulate</span><span class="p">(</span><span class="n">a</span><span class="p">.</span><span class="n">begin</span><span class="p">(),</span> <span class="n">e</span><span class="p">.</span><span class="n">end</span><span class="p">(),</span> <span class="mi">0</span><span class="p">)</span> <span class="o">&lt;&lt;</span> <span class="n">std</span><span class="o">::</span><span class="n">endl</span><span class="p">;</span>
381385
<span class="p">}</span>
382386
</pre></div>
383387
</div>
@@ -457,7 +461,7 @@ <h2>Summary<a class="headerlink" href="#Summary" title="Permalink to this headli
457461
<script type="text/javascript">
458462
var DOCUMENTATION_OPTIONS = {
459463
URL_ROOT:'../',
460-
VERSION:'0.10.0',
464+
VERSION:'0.10.1',
461465
COLLAPSE_INDEX:false,
462466
FILE_SUFFIX:'.html',
463467
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/Getting_Started_With_IDEs_and_Notebooks.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Setting Up a Development Environment &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>Setting Up a Development Environment &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141
<link rel="up" title="Module 1: Getting Started with Python" href="../module_1.html"/>
4242
<link rel="next" title="Module 2: The Essentials of Python" href="../module_2.html"/>
4343
<link rel="prev" title="Jupyter Notebooks" href="Jupyter_Notebooks.html"/>
@@ -69,7 +69,7 @@
6969

7070

7171
<div class="version">
72-
0.10.0
72+
0.10.1
7373
</div>
7474

7575

@@ -346,7 +346,7 @@ <h3>Recommended IDEs<a class="headerlink" href="#Recommended-IDEs" title="Permal
346346
<script type="text/javascript">
347347
var DOCUMENTATION_OPTIONS = {
348348
URL_ROOT:'../',
349-
VERSION:'0.10.0',
349+
VERSION:'0.10.1',
350350
COLLAPSE_INDEX:false,
351351
FILE_SUFFIX:'.html',
352352
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/Informal_Intro_Python.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>An Informal Introduction to Python &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>An Informal Introduction to Python &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141
<link rel="up" title="Module 1: Getting Started with Python" href="../module_1.html"/>
4242
<link rel="next" title="Jupyter Notebooks" href="Jupyter_Notebooks.html"/>
4343
<link rel="prev" title="Installing Python" href="Installing_Python.html"/>
@@ -69,7 +69,7 @@
6969

7070

7171
<div class="version">
72-
0.10.0
72+
0.10.1
7373
</div>
7474

7575

@@ -1206,7 +1206,7 @@ <h2>Playing with Lists<a class="headerlink" href="#Playing-with-Lists" title="Pe
12061206
<script type="text/javascript">
12071207
var DOCUMENTATION_OPTIONS = {
12081208
URL_ROOT:'../',
1209-
VERSION:'0.10.0',
1209+
VERSION:'0.10.1',
12101210
COLLAPSE_INDEX:false,
12111211
FILE_SUFFIX:'.html',
12121212
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/Installing_Python.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Installing Python &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>Installing Python &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141
<link rel="up" title="Module 1: Getting Started with Python" href="../module_1.html"/>
4242
<link rel="next" title="An Informal Introduction to Python" href="Informal_Intro_Python.html"/>
4343
<link rel="prev" title="Introducing the Python Programming Language" href="GettingStartedWithPython.html"/>
@@ -69,7 +69,7 @@
6969

7070

7171
<div class="version">
72-
0.10.0
72+
0.10.1
7373
</div>
7474

7575

@@ -310,7 +310,7 @@ <h2>Installing Anaconda<a class="headerlink" href="#Installing-Anaconda" title="
310310
<script type="text/javascript">
311311
var DOCUMENTATION_OPTIONS = {
312312
URL_ROOT:'../',
313-
VERSION:'0.10.0',
313+
VERSION:'0.10.1',
314314
COLLAPSE_INDEX:false,
315315
FILE_SUFFIX:'.html',
316316
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/Jupyter_Notebooks.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Jupyter Notebooks &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>Jupyter Notebooks &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141
<link rel="up" title="Module 1: Getting Started with Python" href="../module_1.html"/>
4242
<link rel="next" title="Setting Up a Development Environment" href="Getting_Started_With_IDEs_and_Notebooks.html"/>
4343
<link rel="prev" title="An Informal Introduction to Python" href="Informal_Intro_Python.html"/>
@@ -69,7 +69,7 @@
6969

7070

7171
<div class="version">
72-
0.10.0
72+
0.10.1
7373
</div>
7474

7575

@@ -1487,7 +1487,7 @@ <h3>Using Jupyter Notebooks with Other Languages<a class="headerlink" href="#Usi
14871487
<script type="text/javascript">
14881488
var DOCUMENTATION_OPTIONS = {
14891489
URL_ROOT:'../',
1490-
VERSION:'0.10.0',
1490+
VERSION:'0.10.1',
14911491
COLLAPSE_INDEX:false,
14921492
FILE_SUFFIX:'.html',
14931493
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/Numerical_Work_In_Python.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Doing Numerical Work in Python &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>Doing Numerical Work in Python &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141

4242

4343
<script src="../_static/js/modernizr.min.js"></script>
@@ -66,7 +66,7 @@
6666

6767

6868
<div class="version">
69-
0.10.0
69+
0.10.1
7070
</div>
7171

7272

@@ -312,7 +312,7 @@ <h2>Summary<a class="headerlink" href="#Summary" title="Permalink to this headli
312312
<script type="text/javascript">
313313
var DOCUMENTATION_OPTIONS = {
314314
URL_ROOT:'../',
315-
VERSION:'0.10.0',
315+
VERSION:'0.10.1',
316316
COLLAPSE_INDEX:false,
317317
FILE_SUFFIX:'.html',
318318
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/SiteFormatting.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>A Quick Guide to Formatting &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>A Quick Guide to Formatting &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141
<link rel="up" title="Module 1: Getting Started with Python" href="../module_1.html"/>
4242
<link rel="next" title="Introducing the Python Programming Language" href="GettingStartedWithPython.html"/>
4343
<link rel="prev" title="Module 1: Getting Started with Python" href="../module_1.html"/>
@@ -69,7 +69,7 @@
6969

7070

7171
<div class="version">
72-
0.10.0
72+
0.10.1
7373
</div>
7474

7575

@@ -494,7 +494,7 @@ <h1>A Quick Guide to Formatting<a class="headerlink" href="#A-Quick-Guide-to-For
494494
<script type="text/javascript">
495495
var DOCUMENTATION_OPTIONS = {
496496
URL_ROOT:'../',
497-
VERSION:'0.10.0',
497+
VERSION:'0.10.1',
498498
COLLAPSE_INDEX:false,
499499
FILE_SUFFIX:'.html',
500500
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/Untitled.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Informal Introduction to Python &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>Informal Introduction to Python &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141

4242

4343
<script src="../_static/js/modernizr.min.js"></script>
@@ -66,7 +66,7 @@
6666

6767

6868
<div class="version">
69-
0.10.0
69+
0.10.1
7070
</div>
7171

7272

@@ -256,7 +256,7 @@ <h2>The Python Console<a class="headerlink" href="#The-Python-Console" title="Pe
256256
<script type="text/javascript">
257257
var DOCUMENTATION_OPTIONS = {
258258
URL_ROOT:'../',
259-
VERSION:'0.10.0',
259+
VERSION:'0.10.1',
260260
COLLAPSE_INDEX:false,
261261
FILE_SUFFIX:'.html',
262262
HAS_SOURCE: true,

docs/Module1_GettingStartedWithPython/Untitled1.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>&lt;no title&gt; &mdash; Python Like You Mean It 0.10.0 documentation</title>
11+
<title>&lt;no title&gt; &mdash; Python Like You Mean It 0.10.1 documentation</title>
1212

1313

1414

@@ -37,7 +37,7 @@
3737
<link rel="index" title="Index"
3838
href="../genindex.html"/>
3939
<link rel="search" title="Search" href="../search.html"/>
40-
<link rel="top" title="Python Like You Mean It 0.10.0 documentation" href="../index.html"/>
40+
<link rel="top" title="Python Like You Mean It 0.10.1 documentation" href="../index.html"/>
4141

4242

4343
<script src="../_static/js/modernizr.min.js"></script>
@@ -66,7 +66,7 @@
6666

6767

6868
<div class="version">
69-
0.10.0
69+
0.10.1
7070
</div>
7171

7272

@@ -229,7 +229,7 @@
229229
<script type="text/javascript">
230230
var DOCUMENTATION_OPTIONS = {
231231
URL_ROOT:'../',
232-
VERSION:'0.10.0',
232+
VERSION:'0.10.1',
233233
COLLAPSE_INDEX:false,
234234
FILE_SUFFIX:'.html',
235235
HAS_SOURCE: true,

0 commit comments

Comments
 (0)