-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
473 lines (429 loc) · 17.2 KB
/
index.html
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>ゼロから学ぶPython</title>
<style type="text/css">
code {
white-space: pre;
}
</style>
<style type="text/css">
div.sourceCode {
overflow-x: auto;
}
table.sourceCode,
tr.sourceCode,
td.lineNumbers,
td.sourceCode {
margin: 0;
padding: 0;
vertical-align: baseline;
border: none;
}
table.sourceCode {
width: 100%;
line-height: 100%;
}
td.lineNumbers {
text-align: right;
padding-right: 4px;
padding-left: 4px;
color: #aaaaaa;
border-right: 1px solid #aaaaaa;
}
td.sourceCode {
padding-left: 5px;
}
code>span.kw {
color: #007020;
font-weight: bold;
}
/* Keyword */
code>span.dt {
color: #902000;
}
/* DataType */
code>span.dv {
color: #40a070;
}
/* DecVal */
code>span.bn {
color: #40a070;
}
/* BaseN */
code>span.fl {
color: #40a070;
}
/* Float */
code>span.ch {
color: #4070a0;
}
/* Char */
code>span.st {
color: #4070a0;
}
/* String */
code>span.co {
color: #60a0b0;
font-style: italic;
}
/* Comment */
code>span.ot {
color: #007020;
}
/* Other */
code>span.al {
color: #ff0000;
font-weight: bold;
}
/* Alert */
code>span.fu {
color: #06287e;
}
/* Function */
code>span.er {
color: #ff0000;
font-weight: bold;
}
/* Error */
code>span.wa {
color: #60a0b0;
font-weight: bold;
font-style: italic;
}
/* Warning */
code>span.cn {
color: #880000;
}
/* Constant */
code>span.sc {
color: #4070a0;
}
/* SpecialChar */
code>span.vs {
color: #4070a0;
}
/* VerbatimString */
code>span.ss {
color: #bb6688;
}
/* SpecialString */
code>span.va {
color: #19177c;
}
/* Variable */
code>span.cf {
color: #007020;
font-weight: bold;
}
/* ControlFlow */
code>span.op {
color: #666666;
}
/* Operator */
code>span.pp {
color: #bc7a00;
}
/* Preprocessor */
code>span.at {
color: #7d9029;
}
/* Attribute */
code>span.do {
color: #ba2121;
font-style: italic;
}
/* Documentation */
code>span.an {
color: #60a0b0;
font-weight: bold;
font-style: italic;
}
/* Annotation */
code>span.cv {
color: #60a0b0;
font-weight: bold;
font-style: italic;
}
/* CommentVar */
code>span.in {
color: #60a0b0;
font-weight: bold;
font-style: italic;
}
/* Information */
</style>
<style>
.btn-square {
display: inline-block;
padding: 0.5em 0.5em;
text-decoration: none;
background: #668ad8;
color: #FFF;
border-bottom: solid 4px #626295;
border-radius: 5px;
}
.btn-square:active {
-webkit-transform: translateY(4px);
transform: translateY(4px);
border-bottom: none;
}
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
}
p.caption {
display: none;
}
img {
width: 100%
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
<link rel="stylesheet" href="https://kaityo256.github.io/python_zero/github-markdown.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
</head>
<body>
<article class="markdown-body">
<header>
<h1 class="title"><a
href="https://kaityo256.github.io/python_zero/">ゼロから学ぶPython</a></h1>
</header>
<a href="https://github.com/kaityo256/python_zero">
<div class="btn-square">
<i class="fab fa-github"></i> View on GitHub
</div>
<p></a></p>
<h1
id="この講義ノートについて">この講義ノートについて</h1>
<p>これは、大学の学部二年生向けのプログラミングの講義ノートとして書かれたものである。講義の最初に30分程度説明をして、その後の60分実習をする形式とし、全部で14回の予定である。これまでプログラムをほとんどしたことがない学生を対象としている。Google
Colabを使うことで環境構築をせず、ブラウザだけで実習形式で学ぶ。言語としてはPythonを用いるが、Pythonを学ぶことそのものを目的とせず、プログラミングの考え方や、計算機の仕組み、基本的なアルゴリズムの考え方などを学ぶことを目的とする。</p>
<p>なお、この講義ノートを元にした書籍が出版されている。</p>
<p><a href="https://www.amazon.co.jp/dp/4065218837/"><img src="img/book.png" style="width: 240px"></a></p>
<ul>
<li>書籍版「<a
href="https://www.amazon.co.jp/dp/4065218837/">ゼロから学ぶPythonプログラミング</a>」</li>
<li>Kindle版「<a
href="https://www.amazon.co.jp/dp/B08Y8N7C11">ゼロから学ぶPythonプログラミング</a>」</li>
</ul>
<h1 id="はじめに"><a
href="introduction/index.html">はじめに</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-hello">講義スライド</a>
(「Pythonの概要とGoogle Colabの使い方」と共通)</li>
<li>なぜPythonを学ぶのか。「プログラマ的」発想について。</li>
</ul>
<h1 id="pythonの概要とgoogle-colabの使い方"><a
href="hello/index.html">Pythonの概要とGoogle
Colabの使い方</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-hello">講義スライド</a>
(「はじめに」と共通)</li>
<li>Google Colabの使い方に慣れる</li>
<li>Pythonに触れてみる</li>
<li>余談:タッチタイピングについて</li>
</ul>
<h1 id="条件分岐と繰り返し処理"><a
href="basic/index.html">条件分岐と繰り返し処理</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-basic">講義スライド</a></li>
<li>組み込み型</li>
<li>関数の宣言と利用方法</li>
<li>for文による繰り返し処理</li>
<li>if文による条件分岐</li>
<li>ニュートン法</li>
<li>余談:バグについて</li>
</ul>
<h1 id="関数とスコープ"><a
href="scope/index.html">関数とスコープ</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-scope">講義スライド</a></li>
<li>while文</li>
<li>ループのスキップと脱出</li>
<li>関数</li>
<li>スコープ</li>
<li>ロジスティック写像</li>
<li>Collatz問題</li>
<li>余談:数論について</li>
</ul>
<h1 id="リストやタプルの使い方"><a
href="list/index.html">リストやタプルの使い方</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-list">講義スライド</a></li>
<li>リスト</li>
<li>タプル</li>
<li>値のコピーとリストのコピーの違い</li>
<li>参照の値渡し</li>
<li>リスト内包表記</li>
<li>コッホ曲線</li>
<li>余談:OSを作ってミュージシャンになった人</li>
</ul>
<h1 id="文字列処理"><a
href="string/index.html">文字列処理</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-string">講義スライド</a></li>
<li>文字列処理</li>
<li>辞書</li>
<li>正規表現</li>
<li>形態素解析</li>
<li>ワードクラウド</li>
<li>余談:国際化は難しい</li>
</ul>
<h1 id="ファイル操作"><a
href="file/index.html">ファイル操作</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-file">講義スライド</a></li>
<li>ファイルシステムについて</li>
<li>ファイルの読み込み</li>
<li>CSVファイルの扱い</li>
<li>データ解析</li>
<li>余談:消えていくアイコンのオリジナルたち</li>
</ul>
<h1 id="再帰呼び出し"><a
href="recursion/index.html">再帰呼び出し</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-recursion">講義スライド</a></li>
<li>再帰呼び出しとは</li>
<li>階段の登り方問題</li>
<li>再帰による迷路の解法</li>
<li>余談:進化するオセロAIを作った話</li>
</ul>
<h1 id="クラスとオブジェクト指向"><a
href="class/index.html">クラスとオブジェクト指向</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-class">講義スライド</a></li>
<li>オブジェクト指向とは?</li>
<li>クラスとインスタンス</li>
<li>オブジェクト指向プログラミングの実例</li>
<li>割り箸ゲーム</li>
<li>余談:心理的安全性について</li>
</ul>
<h1 id="numpyとscipyの使い方"><a
href="numpy/index.html">NumPyとSciPyの使い方</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-numpy">講義スライド</a></li>
<li>NumPyの使い方</li>
<li>SciPyの使い方</li>
<li>シュレーディンガー方程式と固有値問題</li>
<li>特異値分解と画像近似</li>
<li>余談:人外について</li>
</ul>
<h1 id="pythonが動く仕組み"><a
href="howtowork/index.html">Pythonが動く仕組み</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-10">講義スライド</a></li>
<li>コンピュータはなぜ動くのか?</li>
<li>Pythonが動く仕組み</li>
<li>抽象構文木</li>
<li>バイトコード</li>
<li>余談:機械がやるべきこと、やるべきでないこと</li>
</ul>
<h1 id="動的計画法"><a
href="dp/index.html">動的計画法</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-dp">講義スライド</a></li>
<li>組み合わせ最適化問題</li>
<li>貪欲法</li>
<li>全探索</li>
<li>メモ化再帰による動的計画法</li>
<li>余談:エレファントな解法</li>
</ul>
<h1 id="乱数を使ったプログラム"><a
href="random/index.html">乱数を使ったプログラム</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-random">講義スライド</a></li>
<li>モンテカルロ法</li>
<li>疑似乱数</li>
<li>モンティ・ホール問題</li>
<li>パーコレーション</li>
<li>余談:疑似乱数とゲーム</li>
</ul>
<h1 id="数値シミュレーション"><a
href="simulation/index.html">数値シミュレーション</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-simulation">講義スライド</a></li>
<li>弾道計算</li>
<li>反応拡散方程式</li>
<li>余談:パーソナルスーパーコンピュータ</li>
</ul>
<h1 id="簡単な機械学習"><a
href="ml/index.html">簡単な機械学習</a></h1>
<ul>
<li><a
href="https://speakerdeck.com/kaityo256/python-ml">講義スライド</a></li>
<li>機械学習の概要</li>
<li>重回帰分析</li>
<li>DCGAN</li>
<li>余談:AIに悪意はあるか</li>
</ul>
<h1 id="略解と解説"><a
href="answer/index.html">略解と解説</a></h1>
<ul>
<li>各章の問題の略解と解説</li>
</ul>
<h1 id="付録pythonのインストールと実行方法"><a
href="install/index.html">付録:Pythonのインストールと実行方法</a></h1>
<p>(Google Colabを使う場合は不要)</p>
<ul>
<li>Anacondaのインストール方法</li>
<li>Pythonの実行方法</li>
</ul>
<h1 id="参考文献"><a
href="references/index.html">参考文献</a></h1>
<ul>
<li>Pythonを学ぶために</li>
<li>プログラムを学ぶために</li>
<li>数学や科学について</li>
<li>プロジェクトについて</li>
</ul>
<h1 id="正誤表"><a
href="errata/index.html">正誤表</a></h1>
<p>書籍版「<a
href="https://www.amazon.co.jp/dp/4065218837/">ゼロから学ぶPythonプログラミング</a>」の<a
href="errata/index.html">正誤表</a>です。ウェブ版では全て修正されています。</p>
<h1 id="ライセンス">ライセンス</h1>
<p>Copyright (C) 2018-present Hiroshi Watanabe</p>
<p>この文章と絵(pptxファイルを含む)はクリエイティブ・コモンズ
4.0 表示 (CC-BY 4.0)で提供する。</p>
<p>This article and pictures are licensed under a <a
href="https://creativecommons.org/licenses/by/4.0/">Creative
Commons Attribution 4.0 International License</a>.</p>
<p>本リポジトリに含まれるプログラムは、<a
href="https://opensource.org/licenses/MIT">MITライセンス</a>で提供する。</p>
<p>The source codes in this repository are licensed
under <a
href="https://opensource.org/licenses/MIT">the MIT
License</a>.</p>
<p>なお、HTML版の作成に際し、CSSとして<a
href="https://github.com/sindresorhus/github-markdown-css">github-markdown-css</a>を利用しています。</p>
</article>
</body>
</html>