python-tutorial
python-tutorial copied to clipboard
Material for a Jupyter-based Python tutorial
In the given `pyproject.toml`-file `sphinx` is used for generating documentation: ``` docs = [ "sphinx==4.2.0", "sphinx-rtd-theme==1.0.0", ] ``` Later, however, during the documentation examples, `mkdocs` is used instead: > We...
In the exercise "solution_read_write_file", the accepted solution is counting "\n" as a character, in contrast to the example provided. More clearly, the following solution passes the test: ```python def solution_read_write_file(input_file:...
fixes #111
- [x] Don't treat comments in code blocks as headings - [x] Add a "Back" link to each heading