Created
December 18, 2020 18:43
-
-
Save DraconianLore/34fc254fff94ccbb8c245fb45797056f to your computer and use it in GitHub Desktop.
jupyter-test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Welcome to Jupyter!" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"This repo contains an introduction to [Jupyter](https://jupyter.org) and [IPython](https://ipython.org).\n", | |
"\n", | |
"Outline of some basics:\n", | |
"\n", | |
"* [Notebook Basics](../examples/Notebook/Notebook%20Basics.ipynb)\n", | |
"* [IPython - beyond plain python](../examples/IPython%20Kernel/Beyond%20Plain%20Python.ipynb)\n", | |
"* [Markdown Cells](../examples/Notebook/Working%20With%20Markdown%20Cells.ipynb)\n", | |
"* [Rich Display System](../examples/IPython%20Kernel/Rich%20Output.ipynb)\n", | |
"* [Custom Display logic](../examples/IPython%20Kernel/Custom%20Display%20Logic.ipynb)\n", | |
"* [Running a Secure Public Notebook Server](../examples/Notebook/Running%20the%20Notebook%20Server.ipynb#Securing-the-notebook-server)\n", | |
"* [How Jupyter works](../examples/Notebook/Multiple%20Languages%2C%20Frontends.ipynb) to run code in different languages." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"hell0\n" | |
] | |
} | |
], | |
"source": [ | |
"print('hell0')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 3", | |
"language": "python", | |
"name": "python3" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython3", | |
"version": "3.6.11" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment