Skip to content

Commit 392ce4e

Browse files
committed
Add source code for the whole book. @2024.11.19
1 parent ee6a20d commit 392ce4e

File tree

411 files changed

+16889
-0
lines changed

Some content is hidden

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

411 files changed

+16889
-0
lines changed

.gitignore

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/#use-with-ide
110+
.pdm.toml
111+
112+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113+
__pypackages__/
114+
115+
# Celery stuff
116+
celerybeat-schedule
117+
celerybeat.pid
118+
119+
# SageMath parsed files
120+
*.sage.py
121+
122+
# Environments
123+
.env
124+
.venv
125+
env/
126+
venv/
127+
ENV/
128+
env.bak/
129+
venv.bak/
130+
131+
# Spyder project settings
132+
.spyderproject
133+
.spyproject
134+
135+
# Rope project settings
136+
.ropeproject
137+
138+
# mkdocs documentation
139+
/site
140+
141+
# mypy
142+
.mypy_cache/
143+
.dmypy.json
144+
dmypy.json
145+
146+
# Pyre type checker
147+
.pyre/
148+
149+
# pytype static type analyzer
150+
.pytype/
151+
152+
# Cython debug symbols
153+
cython_debug/
154+
155+
# PyCharm
156+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158+
# and can be added to the global gitignore or merged into this file. For a more nuclear
159+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160+
#.idea/
161+
162+
# VSCode
163+
*.code-workspace

README.md

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Learn Python Programming 4th Edition
2+
3+
Welcome to Learn Python Programming, 4th Edition.
4+
5+
Here you can find the complete source code for this book. Every
6+
line of code you will find in the book is in this repository, plus
7+
all the code that we couldn't fit in the book.
8+
9+
## Target Python Version
10+
11+
Python 3.12.*
12+
13+
## Working on a chapter
14+
15+
We suggest you create a dedicated virtual environment for each chapter
16+
you wish to work on. Chapters that require third-party libraries will
17+
have a folder inside, called `requirements`.
18+
19+
First you will need to create a virtual environment. If you don't know
20+
what a virtual environment is, please read Chapter 1.
21+
22+
Let's now pretend you want to work on Chapter 7. First, change into the folder
23+
for Chapter 7 (it's called `ch7`):
24+
25+
$ cd ch7
26+
27+
Then, create a virtual environment. In this example the virtual environment
28+
will live inside the chapter's folder, but you can choose any other folder
29+
that might suit you better.
30+
31+
$ python3.12 -m venv .venv
32+
33+
We have given the virtual environment folder the name `.venv`. Feel free
34+
to choose any other name that you might want.
35+
36+
---
37+
38+
Note: the above procedure might fail in some of the chapter folders, due
39+
to the presence of files that aren't meant to be run. If that is the case, you
40+
should choose another folder where to place your virtual environment. You can
41+
create one within the chapter folder itself, or place the virtual environment
42+
outside of the chapter folder altogether.
43+
44+
---
45+
46+
Next step is to activate the virtual environment:
47+
48+
$ source .venv/bin/activate
49+
50+
If you're on Windows, to activate your environment, you will need to run:
51+
52+
$ .venv\Scripts\activate
53+
54+
Next, if the `requirements` folder is present, change into it, and run
55+
the following command for each of the `.txt` files you will find in it.
56+
Normally there is only a `requirements.txt` file.
57+
58+
$ cd requirements
59+
$ pip install -U -r requirements.txt
60+
$ cd .. # this brings you back to the root of the chapter
61+
62+
Once you have installed all requirements, you are ready to run the
63+
chapter's code. If a chapter needs extra work to be set up, you will
64+
find all the instructions you need in the chapter's text.
65+
66+
**Note**:
67+
Always remember to activate the virtual environment before you install
68+
third-party libraries.

ch01/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Chapter 1 data files
2+
====================
3+
4+
The files in this folder are not supposed to work if run.
5+
They serve as source for the book chapters, and to provide a
6+
quick copy/paste tool for whoever would need their content.

ch01/example/core.py

Whitespace-only changes.

ch01/example/run.py

Whitespace-only changes.

ch01/example/util/__init__.py

Whitespace-only changes.

ch01/example/util/db.py

Whitespace-only changes.

ch01/example/util/maths.py

Whitespace-only changes.

ch01/example/util/network.py

Whitespace-only changes.

ch01/factorial.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
>>> from math import factorial
2+
>>> factorial(5)
3+
120

ch01/files_only/core.py

Whitespace-only changes.

ch01/files_only/db.py

Whitespace-only changes.

ch01/files_only/maths.py

Whitespace-only changes.

ch01/files_only/network.py

Whitespace-only changes.

ch01/files_only/run.py

Whitespace-only changes.

ch01/names.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
>>> n = 3 # integer number
2+
>>> address = "221b Baker Street, NW1 6XE, London" # Sherlock Holmes' address
3+
>>> employee = {
4+
... 'age': 45,
5+
... 'role': 'CTO',
6+
... 'SSN': 'AB1234567',
7+
... }
8+
>>> # let us print them
9+
>>> n
10+
3
11+
>>> address
12+
'221b Baker Street, NW1 6XE, London'
13+
>>> employee
14+
{'age': 45, 'role': 'CTO', 'SSN': 'AB1234567'}
15+
>>> other_name
16+
Traceback (most recent call last):
17+
File "<stdin>", line 1, in <module>
18+
NameError: name 'other_name' is not defined
19+
>>>

ch01/scopes1.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# scopes1.py
2+
# Local versus Global
3+
4+
# we define a function, called local
5+
def local():
6+
age = 7
7+
print(age)
8+
9+
# we define age within the global scope
10+
age = 5
11+
12+
# we call, or `execute` the function local
13+
local()
14+
15+
print(age)

ch01/scopes2.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# scopes2.py
2+
# Local versus Global
3+
4+
def local():
5+
# age does not belong to the scope defined by the local
6+
# function so Python will keep looking into the next enclosing
7+
# scope. age is finally found in the global scope.
8+
print(age, 'printing from the local scope')
9+
10+
age = 5
11+
print(age, 'printing from the global scope')
12+
13+
local()

ch01/scopes3.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# scopes3.py
2+
# Local, Enclosing and Global
3+
4+
5+
def enclosing_func():
6+
age = 13
7+
8+
def local():
9+
# age does not belong to the scope defined by the local
10+
# function so Python will keep looking into the next
11+
# enclosing scope. This time age is found in the enclosing
12+
# scope
13+
print(age, 'printing from the local scope')
14+
15+
# calling the function local
16+
local()
17+
18+
age = 5
19+
print(age, 'printing from the global scope')
20+
21+
enclosing_func()

ch01/virtualenv.creation.txt

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
macOS:
2+
3+
4+
fab@m1:~/code$ mkdir my-project # step 1
5+
fab@m1:~/code$ cd my-project
6+
7+
fab@m1:~/code/my-project$ which python3.12 # check system python
8+
/usr/bin/python3.12 # <-- system python3.12
9+
10+
fab@m1:~/code/my-project$ python3.12 -m venv lpp4ed # step 2
11+
fab@m1:~/code/my-project$ source ./lpp4ed/bin/activate # step 3
12+
13+
# check python again: now using the virtual environment's one
14+
(lpp4ed) fab@m1:~/code/my-project$ which python
15+
/Users/fab/code/my-project/lpp4ed/bin/python
16+
17+
(lpp4ed) fab@m1:~/code/my-project$ python # step 4
18+
Python 3.12.2 (main, Feb 14 2024, 14:16:36)
19+
→ [Clang 15.0.0 (clang-1500.1.0.2.5)] on darwin
20+
Type "help", "copyright", "credits" or "license" for more
21+
→ information.
22+
>>> exit()
23+
24+
(lpp4ed) fab@m1:~/code/my-project$ deactivate # step 5
25+
fab@m1:~/code/my-project$
26+
27+
28+
----------------------------------------------------------------------------------------
29+
30+
Windows 11
31+
Simply install from python website, then from terminal:
32+
33+
PS C:\Users\H\Code> mkdir my-project # step 1
34+
35+
36+
Directory: C:\Users\H\Code
37+
38+
39+
Mode LastWriteTime Length Name
40+
---- ------------- ------ ----
41+
d----- 3/15/2024 3:50 PM my-project
42+
43+
44+
PS C:\Users\H\Code> cd .\my-project\
45+
46+
# check installed python versions
47+
PS C:\Users\H\Code\my-project> py --list-paths
48+
-V:3.12 *
49+
→ C:\Users\H\AppData\Local\Programs\Python\Python312\python.exe
50+
51+
52+
PS C:\Users\H\Code\my-project> py -3.12 -m venv lpp4ed # step 2
53+
PS C:\Users\H\Code\my-project> .\lpp4ed\Scripts\activate # step 3
54+
55+
# check python versions again: now using the virtual environment's
56+
(lpp4ed) PS C:\Users\H\Code\my-project> py --list-paths
57+
*
58+
→ C:\Users\H\Code\my-project\lpp4ed\Scripts\python.exe
59+
-V:3.12
60+
→ C:\Users\H\AppData\Local\Programs\Python\Python312\python.exe
61+
62+
(lpp4ed) PS C:\Users\H\Code\my-project> python # step 4
63+
Python 3.12.2 (tags/v3.12.2:6abddd9, Feb 6 2024, 21:26:36)
64+
→ [MSC v.1937 64 bit (AMD64)] on win32
65+
Type "help", "copyright", "credits" or "license" for more
66+
→ information.
67+
>>> exit()
68+
69+
(lpp4ed) PS C:\Users\H\Code\my-project> deactivate # step 5
70+
PS C:\Users\H\Code\my-project>

0 commit comments

Comments
 (0)