Jupyter example with custom js and css
Download exercises zip
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:
[2]:
def inc(x):
raise Exception('TODO IMPLEMENT ME !')
Exercise 2
Implement upper function
[3]:
def upper(x):
raise Exception('TODO IMPLEMENT ME !')