illustrated_guide_to_python3.pdf
(
3306 KB
)
Pobierz
Illustrated Guide to Python 3
A Complete Walkthrough of Beginning
Python with Unique Illustrations Showing
how Python Really Works
Illustrated Guide to Python 3
A Complete Walkthrough of Beginning
Python with Unique Illustrations Showing
how Python Really Works
Matt Harrison
Technical Editors: Roger A. Davidson, Andrew McLaughlin
hairysun.com
COPYRIGHT © 2017
Oct 2, 2017
While every precaution has been taken in the preparation of this book, the publisher and
author assumes no responsibility for errors or omissions, or for damages resulting from
the use of the information contained herein
Contents
Contents
1 Why Python?
2 Which Version of Python?
2.1 Python installation . .
2.2 Which editor? . . . . .
2.3 Summary . . . . . . . .
2.4 Exercises . . . . . . . .
3 The Interpreter
3.1 REPL . . . . . . .
3.2 A REPL example .
3.3 Summary . . . . .
3.4 Exercises . . . . .
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
3
5
5
6
6
6
9
9
12
14
14
15
15
17
19
19
21
21
21
22
22
23
23
23
24
26
28
29
31
31
33
33
34
v
4 Running Programs
4.1 Running from IDLE . .
4.2 Unixy embellishments
4.3 Summary . . . . . . . .
4.4 Exercises . . . . . . . .
5 Writing and Reading Data
5.1 Simple output . . . . .
5.2 Getting user input . . .
5.3 Summary . . . . . . . .
5.4 Exercises . . . . . . . .
6 Variables
6.1 Mutation and state . . . . . . . . .
6.2 Python variables are like tags . . .
6.3 Cattle tags . . . . . . . . . . . . . .
6.4 Rebinding variables . . . . . . . . .
6.5 Naming variables . . . . . . . . . .
6.6 Additional naming considerations
6.7 Summary . . . . . . . . . . . . . . .
6.8 Exercises . . . . . . . . . . . . . . .
7 More about Objects
7.1 Identity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
7.2 Type . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Plik z chomika:
Leniek
Inne pliki z tego folderu:
effective-pycharm.pdf
(35078 KB)
illustrated_guide_to_python3.pdf
(3306 KB)
learning_the_pandas_library.pdf
(4553 KB)
python-basics-early-access-2019-09.pdf
(3633 KB)
Managing_Python_Dependencies__Learning_Progress_Workbook.pdf
(73 KB)
Inne foldery tego chomika:
audio
epub
mobi
Zgłoś jeśli
naruszono regulamin