Skip to content

Files

Latest commit

b4ad845 · Aug 3, 2021

History

History

03-dict-set

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 8, 2021
Jan 31, 2021
Nov 26, 2019
Nov 26, 2019
May 21, 2021
May 21, 2021
May 21, 2021
May 21, 2021
Aug 3, 2021
Feb 19, 2020
Feb 19, 2020
Feb 14, 2021
Nov 26, 2019

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