Nice tutorial on markdown text capabilities. Brynmawr tutorial
Jupyter Notebook Markdown tutorial
Python – getting seconds since midnight
import datetime now = datetime.datetime.now() midnight = now.replace(hour=0, minute=0, second=0, microsecond=0) seconds = (now – midnight).seconds Can be made into an easy function. And conversion to minutes and hours easy.