Skip to content

Instantly share code, notes, and snippets.

@pybokeh
Created August 8, 2019 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pybokeh/b5f4429c6395ae2f2da543229466bd54 to your computer and use it in GitHub Desktop.
Save pybokeh/b5f4429c6395ae2f2da543229466bd54 to your computer and use it in GitHub Desktop.
/BRG_BRAIN/workshops/Intro_To_Python/Untitled.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"metadata": {},
"cell_type": "markdown",
"source": "# Intro to Jupyter Notebooks"
},
{
"metadata": {},
"cell_type": "markdown",
"source": "### What are they?"
},
{
"metadata": {},
"cell_type": "markdown",
"source": "- item 1\n- item 2"
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "print(\"Hello BRG BRAIN!\")",
"execution_count": 1,
"outputs": [
{
"output_type": "stream",
"text": "Hello BRG BRAIN!\n",
"name": "stdout"
}
]
},
{
"metadata": {},
"cell_type": "markdown",
"source": "They are like a web-based scratch pads or notebooks for you to jot down your ideas or visualizations. They are like making your own Wikipedia-style pages, but can also _execute_ code. They can execute Python, R, Julia, Java, C, C++, and even FORTRAN code."
},
{
"metadata": {},
"cell_type": "markdown",
"source": "### To add explanatory text, embed images, or videos, you use what is known as markdown syntax."
},
{
"metadata": {},
"cell_type": "markdown",
"source": "## Heading with 2nd largest font"
}
],
"metadata": {
"kernelspec": {
"name": "python3",
"display_name": "Python 3",
"language": "python"
},
"hide_input": false,
"varInspector": {
"window_display": false,
"cols": {
"lenName": 16,
"lenType": 16,
"lenVar": 40
},
"kernels_config": {
"python": {
"library": "var_list.py",
"delete_cmd_prefix": "del ",
"delete_cmd_postfix": "",
"varRefreshCmd": "print(var_dic_list())"
},
"r": {
"library": "var_list.r",
"delete_cmd_prefix": "rm(",
"delete_cmd_postfix": ") ",
"varRefreshCmd": "cat(var_dic_list()) "
}
},
"types_to_exclude": [
"module",
"function",
"builtin_function_or_method",
"instance",
"_Feature"
]
},
"language_info": {
"name": "python",
"version": "3.7.3",
"mimetype": "text/x-python",
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"pygments_lexer": "ipython3",
"nbconvert_exporter": "python",
"file_extension": ".py"
},
"gist": {
"id": "",
"data": {
"description": "/BRG_BRAIN/workshops/Intro_To_Python/Untitled.ipynb",
"public": true
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment