Best Practices

Commenting and organization

  1. Comment code with intent of various organs (loops, calls to readers, etc.)
  2. In Jupyter notebook, write one function per cell; initiate program with a call or calls in its own cell as well
  3. Include Headers in Jupyter notebook to show groupings of cells
  4. Include doc string comments with ''' docstring ''' at the top of each function

Planning

  1. Create a coding plan prior to writing your Python