Skip to content

Commit bfe02d3

Browse files
committed
Add introduction
1 parent 2602561 commit bfe02d3

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ all: epub pdf
33
epub:
44
pandoc -o full-speed-python.epub \
55
metadata.yaml \
6+
chapters/introduction.md \
67

78
pdf:
89
pandoc -o full-speed-python.pdf \
910
-H preamble.tex \
1011
metadata.yaml \
12+
chapters/introduction.md \
1113

1214
clean:
1315
rm *.epub *.pdf

chapters/introduction.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Introduction
2+
3+
This book aims to teach the Python programming language using a practical approach. Its method is quite simple: after a short introduction to each topic, the reader is invited to learn more by solving the proposed exercises.
4+
5+
These exercises have been used extensively in my web development and distributed computing classes at the Superior School of Technology of Setúbal. With these exercises, most students are up to speed with Python in less than a month. In fact, students of the distributed computing course, taught in the second year of the software engineering degree, become familiar with Python’s syntax in two weeks and are able to implement a distributed client-server application with sockets in the third week.
6+
7+
Please note that this book is a work in progress and, as such, may contain a few spelling errors that may be corrected in the future. However it is made available now as it is so it can be useful to anyone who wants to use it. I sincerely hope you can get something good through it.
8+
9+
The source of this book is available on github (<https://github.com/joaoventura/full-speed-python>). I welcome any pull requests to correct misspellings, suggest new exercises or to provide clarification of the current content.
10+
11+
All the best,
12+
13+
João Ventura - Adjunct Professor at the Escola Superior de Tecnologia de Setúbal.

0 commit comments

Comments
 (0)