Skip to content

Instantly share code, notes, and snippets.

@draco3099
Created September 14, 2018 16:13
Show Gist options
  • Save draco3099/a669bc9b58a53ed5c949a6bf4cd67707 to your computer and use it in GitHub Desktop.
Save draco3099/a669bc9b58a53ed5c949a6bf4cd67707 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hola!\n"
]
}
],
"source": [
"print(\"Hola!\")"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0\n",
"1\n",
"2\n",
"3\n",
"4\n",
"5\n",
"6\n",
"7\n",
"8\n",
"9\n"
]
}
],
"source": [
"for i in range(10):\n",
" print(i)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**Esto va en negrita**\n",
"*Esto es cursiva*\n",
"\n",
"### Introcuccion a Jypyter\n",
"- Primer tema\n",
" - 1.1 Primer subtema\n",
" \n",
"<hr>\n",
"\n",
"![Mazinger](https://cdn-pro.elsalvador.com/wp-content/uploads/2018/04/Manga-Mazinger.jpg)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"import matplotlib.pyplot as plt"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"plt?"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"plt??"
]
}
],
"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.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment