Skip to content

Files

Latest commit

5778311 · Nov 14, 2024

History

History

PythonExercises

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 11, 2024
Oct 11, 2024
Nov 11, 2024
Nov 14, 2024
Nov 13, 2024
Nov 13, 2024
Oct 7, 2024
Nov 13, 2024
Nov 14, 2024
Nov 14, 2024
Nov 14, 2024
Oct 29, 2024

Python Exercises

This interactive TUI app includes exercises and multiple-choice questions intended to test the understanding of beginner to intermediate level Python learners.

Installation

This app is available on PyPI as pythonexercises. Example installation instructions are shown below, adjust them based on your preferences and OS.

# virtual environment
$ python3 -m venv textual_apps
$ cd textual_apps
$ source bin/activate
$ pip install pythonexercises

# launch the app
$ pythonexercises

Note
If you are on Windows, using the Windows Terminal is recommended. See this issue for Virtual Environment commands and other details.

To run the app without having to enter the virtual environment again, add this alias to .bashrc (or equivalent):

# you'll have to change the path
alias pythonexercises='/path/to/textual_apps/bin/pythonexercises'

As an alternative to manually managing such virtual environments, you can use https://github.com/pypa/pipx instead:

$ pipx install pythonexercises
$ pythonexercises

As yet another alternative, you can install textual (see Textual documentation for more details), clone this repository and run the python_exercises.py file. You'll need to install textual[syntax] to enable syntax highlighting (see documentation for more details).

Adjust the terminal dimensions for the widgets to appear properly, for example 84x25 (characters x lines). Here are sample screenshots:

Sample Python Exercise

Sample Python Quiz

Guide

See app_guide.md

Ebook

The exercise and quiz questions in this app have been adapted from my 100 Page Python Intro ebook.

License

Code snippets are licensed under MIT LICENSE.

Exercise questions and associated files (like exercises.json and quiz.txt) are licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.