2021-08-02 22:00:17 -03:00
..
2021-07-07 23:45:54 -03:00
2019-11-26 12:17:40 -03:00
2021-05-21 18:56:12 -03:00
2021-05-21 18:56:12 -03:00
2021-05-21 18:56:12 -03:00
2021-05-21 18:56:12 -03:00
2021-08-02 22:00:17 -03:00
2019-11-26 12:17:40 -03:00
2020-02-18 23:58:03 -03:00
2020-02-18 23:58:03 -03:00
2021-02-14 20:28:07 -03:00
2019-11-26 12:17:40 -03:00

# Dictionaries and Sets

Sample code for Chapter 3 of _Fluent Python 2e_ by Luciano Ramalho (O'Reilly, 2020)

## Running the tests

### Doctests

Use Python's standard ``doctest`` module, for example:

    $ python3 -m doctest bisect_demo.py -v

### Jupyter Notebook

Install ``pytest`` and the ``nbval`` plugin:

    $ pip install pytest nbval

Run:

    $ pytest --nbval