Skip to content

added my first jupyter notebook local file #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 55 additions & 9 deletions index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,22 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"outputs": [
{
"data": {
"text/plain": [
"42"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"number = None\n",
"number = 42\n",
"number"
]
},
Expand All @@ -77,11 +88,22 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,
"metadata": {},
"outputs": [],
"outputs": [
{
"data": {
"text/plain": [
"'Change Things'"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"flatiron_mantra = None\n",
"flatiron_mantra = \"Change Things\"\n",
"flatiron_mantra"
]
},
Expand All @@ -92,13 +114,37 @@
"Add a new markdown cell below this one and type `### This is a new header`"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"`### This is a new header`"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now add a new code cell below this one and write whatever code you want to write."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Thank you for the teaching us how to run the jupyter notebook locally.\n"
]
}
],
"source": [
"print(\"Thank you for the teaching us how to run the jupyter notebook locally.\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -117,7 +163,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -131,9 +177,9 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.5"
"version": "3.13.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
"nbformat_minor": 4
}