/cool_things_python_can_do

Primary LanguageJupyter NotebookApache License 2.0Apache-2.0

Cool Things Python (3) Can Do

This collection of notebooks is a resource for Python 3 learning and reference. Each notebook highlights things that Python can do simply and efficiently. If essence, the notebooks aim to demonstrate the principles of the Zen of Python.

Requirements

  1. Python installed
  2. PIP installed

Getting Started

  1. Enter the project directory
  2. Set up and activate a Python virtual environment
python -m venv .venv
source .venv/bin/activate
  1. Install and run Jupyter Lab
pip install jupyterlab   
jupyter lab