{ "cells": [ { "cell_type": "markdown", "id": "54bd0ceb-343c-4e71-9e60-d2fef482421a", "metadata": {}, "source": [ "# Jupyter NoteBook Starter\n", "\n", "This is a Jupyter notebook example as described in the article [Jupyter Notebook: A Complete Introduction](https://codesolid.com/jupyter-notebook-a-complete-introduction/). This is a Markdown \"cell\" (row). You can double-click this cell to view or edit the text. When you're done editing, type Shift-ENTER to run the cell." ] }, { "cell_type": "code", "execution_count": null, "id": "c0bf1366-50c0-46d6-b3d6-d7b789b8865e", "metadata": {}, "outputs": [], "source": [ "# This is a Python Code Cell. It behaves like the Python terminal, \n", "# so it will display the results of the last expression. You can also use print or other Python functions, or course.\n", "# Double-click on this cell if you want to edit the python code. When you're ready to run it, type Shift-ENTER again.\n", "\n", "print(2+2)\n", "message = \"Hello from Python\"\n", "message" ] }, { "cell_type": "markdown", "id": "72b510f4-e087-41b1-8183-accfd5ab5c3b", "metadata": {}, "source": [ "Jupyter Notebook supports Graphs using Matplotlib, Seaborn, etc.\n", "\n", "For the rest of the notebook, I saved the output so you could see how it looks." ] }, { "cell_type": "code", "execution_count": 8, "id": "ae7c9f98-6a15-4f18-9a8c-d47bc8990107", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | name | \n", "age | \n", "height_inches | \n", "
---|---|---|---|
0 | \n", "Roger | \n", "27 | \n", "73 | \n", "
1 | \n", "Juan | \n", "32 | \n", "70 | \n", "
2 | \n", "Marla | \n", "40 | \n", "61 | \n", "
3 | \n", "Diane | \n", "16 | \n", "65 | \n", "