forked from artofproblemsolving/pythonbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·129 lines (120 loc) · 6.72 KB
/
index.html
File metadata and controls
executable file
·129 lines (120 loc) · 6.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>How to Think Like a Computer Scientist — How to Think Like a Computer Scientist: Learning with Python 3 (AoPS Edition)</title>
<link rel="stylesheet" href="_static/style.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/codemirrorEdited.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="_static/pywindowCodemirrorC.js"></script>
<script type="text/javascript" src="_static/skulpt.min.js"></script>
<script type="text/javascript" src="_static/skulpt-stdlib.js"></script>
<script type="text/javascript" src="_static/aopsmods.js"></script>
<link rel="copyright" title="Copyright" href="copyright.html" />
<link rel="top" title="How to Think Like a Computer Scientist: Learning with Python 3 (AoPS Edition)" href="#" />
<link rel="next" title="Copyright Notice" href="copyright.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="copyright.html" title="Copyright Notice"
accesskey="N">next</a> |</li>
<li><a href="#">How to Think Like a Computer Scientist: Learning with Python 3 (AoPS Edition)</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="body">
<div class="section" id="how-to-think-like-a-computer-scientist">
<h1>How to Think Like a Computer Scientist<a class="headerlink" href="#how-to-think-like-a-computer-scientist" title="Permalink to this headline">¶</a></h1>
<img alt="GASP Logo" src="_images/gasp_lessons.png" />
<div class="section" id="learning-with-python-3-aops-edition">
<h2>Learning with Python 3 (AoPS Edition)<a class="headerlink" href="#learning-with-python-3-aops-edition" title="Permalink to this headline">¶</a></h2>
<p>Version date: May 2014</p>
<p>by AoPS Incorporated</p>
<blockquote>
<div><p>(based on 3rd edition by Peter Wentworth, Jeffrey Elkner, Allen B. Downey, and Chris Meyers)</p>
<p>(based on 2nd edition by Jeffrey Elkner, Allen B. Downey, and Chris Meyers)</p>
</div></blockquote>
<p>Corresponding author: <a class="reference external" href="mailto:classes%40artofproblemsolving.com">classes<span>@</span>artofproblemsolving<span>.</span>com</a></p>
<ul class="simple">
<li><a class="reference external" href="copyright.html">Copyright Notice</a></li>
<li><a class="reference external" href="history.html">History</a></li>
<li><a class="reference external" href="foreword-aops.html">Foreword-AoPS Edition</a></li>
</ul>
<p>Frontmatter from the previous edition:
<a class="reference external" href="foreword.html">Foreword</a> — <a class="reference external" href="preface.html">Preface</a> — <a class="reference external" href="contrib.html">Contributor List</a></p>
<ul class="simple">
<li><a class="reference external" href="way_of_the_program.html">Chapter 1</a> <em>The way of the program</em></li>
<li><a class="reference external" href="variables_expressions_statements.html">Chapter 2</a> <em>Variables, expressions, and statements</em></li>
<li><a class="reference external" href="hello_little_turtles.html">Chapter 3</a> <em>Hello, little turtles!</em></li>
<li><a class="reference external" href="functions.html">Chapter 4</a> <em>Functions</em></li>
<li><a class="reference external" href="conditionals.html">Chapter 5</a> <em>Conditionals</em></li>
<li><a class="reference external" href="iteration.html">Chapter 6</a> <em>Flow of Control</em></li>
<li><a class="reference external" href="strings.html">Chapter 7</a> <em>Strings</em></li>
<li><a class="reference external" href="liststuples.html">Chapter 8</a> <em>Lists and Tuples</em></li>
<li><a class="reference external" href="files.html">Chapter 9</a> <em>Files</em></li>
<li><a class="reference external" href="dictionaries.html">Chapter 10</a> <em>Dictionaries</em></li>
</ul>
<ul class="simple">
<li><a class="reference external" href="recursion.html">Chapter 11</a> <em>Recursion</em></li>
<li><a class="reference external" href="classes.html">Chapter 12</a> <em>Classes and Objects – the Basics</em></li>
<li><a class="reference external" href="oop.html">Chapter 13</a> <em>More Classes and Objects</em></li>
<li><a class="reference external" href="collections.html">Chapter 14</a> <em>Collections of Objects</em></li>
<li><a class="reference external" href="inheritance.html">Chapter 15</a> <em>Inheritance</em></li>
<li><a class="reference external" href="events.html">Chapter 16</a> <em>Event-Driven Programming</em></li>
</ul>
<ul>
<li><p class="first"><a class="reference external" href="fdl-1.3.html">GNU Free Document License</a></p>
</li>
<li><div class="first"><a class="reference external" href="https://github.com/artofproblemsolving/pythonbook" target="_blank">Ebook source code repository</a></div></li>
</ul>
<div class="toctree-wrapper compound">
</div>
<div class="toctree-wrapper compound">
</div>
<div class="toctree-wrapper compound">
</div>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="copyright.html" title="Copyright Notice"
>next</a> |</li>
<li><a href="#">How to Think Like a Computer Scientist: Learning with Python 3 (AoPS Edition)</a> »</li>
</ul>
</div>
<div class="footer">
© <a href="copyright.html">Copyright</a> 2014, AoPS Incorporated, 2012, Peter Wentworth, Jeffrey Elkner, Allen B. Downey and Chris Meyers.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.1.
</div>
</body>
</html>