Skip to content

Instantly share code, notes, and snippets.

@postfalk
Last active March 18, 2016 21:37
Show Gist options
  • Save postfalk/f4aff0c6d9fc00422870 to your computer and use it in GitHub Desktop.
Save postfalk/f4aff0c6d9fc00422870 to your computer and use it in GitHub Desktop.
.ipynb_checkpoints

Try ipython notebook

Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "-"
}
},
"source": [
"# Test "
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Welcome Matt\n",
"Welcome Carrie\n",
"Welcome Katie\n",
"Welcome Kirk\n"
]
}
],
"source": [
"attendees = ['Matt', 'Carrie', 'Katie', 'Kirk']\n",
"\n",
"for attendee in attendees:\n",
" print 'Welcome', attendee"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.11"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment