Skip to content

Instantly share code, notes, and snippets.

@Roumenov
Forked from DraconianLore/test.ipynb
Created February 9, 2022 00:25
Show Gist options
  • Save Roumenov/1daf2f680a5ed049f3e62c64835d8e75 to your computer and use it in GitHub Desktop.
Save Roumenov/1daf2f680a5ed049f3e62c64835d8e75 to your computer and use it in GitHub Desktop.
jupyter-test
Display the source blob
Display the rendered blob
Raw
{
"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