Jupyter example with custom js and css

Download exercises zip

Browse files online

Example of notebook for exercises in Jupyter files which calls jupman.init() for injecting jupman.js and jupman.css while editing in Jupyter.

Note calling init() is not mandatory. See also Common files and Custom-js-and-css.

Exercise 1

Implement inc function:

Show solution
[2]:

def inc(x): raise Exception('TODO IMPLEMENT ME !')

Exercise 2

Implement upper function

Show solution
[3]:
def upper(x):
    raise Exception('TODO IMPLEMENT ME !')