Skip to content

Instantly share code, notes, and snippets.

@damontallen
Created November 5, 2015 15:25
Show Gist options
  • Save damontallen/f5627b33585204749c94 to your computer and use it in GitHub Desktop.
Save damontallen/f5627b33585204749c94 to your computer and use it in GitHub Desktop.
This is just an example of the difference between a markdown cell and a code cell in IPython.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"$$x^2 + y^2 + z^2$$"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"ename": "SyntaxError",
"evalue": "invalid syntax (<ipython-input-1-25eec8ecdc3a>, line 1)",
"output_type": "error",
"traceback": [
"\u001b[1;36m File \u001b[1;32m\"<ipython-input-1-25eec8ecdc3a>\"\u001b[1;36m, line \u001b[1;32m1\u001b[0m\n\u001b[1;33m $$x^2 + y^2 + z^2$$\u001b[0m\n\u001b[1;37m ^\u001b[0m\n\u001b[1;31mSyntaxError\u001b[0m\u001b[1;31m:\u001b[0m invalid syntax\n"
]
}
],
"source": [
"$$x^2 + y^2 + z^2$$"
]
}
],
"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.4.3"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment