Getting Started
A simple guide for readers who are new to running Python code from a repository.
1. Install Python 3
Install a current version of Python 3 on your computer. During installation, make sure the installer gives you a way to run Python from a terminal or command prompt.
2. Download or clone the repo
Get the repository onto your computer, then open a terminal in the project folder.
3. Run a chapter file
python code/chapter-02/guess_game_v1.py
If that does not work, try:
python3 code/chapter-02/guess_game_v1.py
4. Compare your results
Type in the code yourself first. Then compare it against the reference file in the matching chapter folder.
This repository is meant to support the book, not replace it. The book explains the reasoning. The repo gives you something practical to run and explore.