Commit 576366a8 authored by Steve Tjoa's avatar Steve Tjoa

python basics: more resources

parent df60bbd3
......@@ -205,10 +205,10 @@ div#notebook {
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<ol>
<li><a href="about.html">About musicinformationretrieval.com</a> (<a href="about.ipynb">ipynb</a>)</li>
<li><a href="about.html">About musicinformationretrieval.com</a></li>
<li><a href="python_basics.html">Python Basics</a></li>
<li><a href="notebooks/get_good_at_ipython.ipynb">Getting Good at IPython</a></li>
<li><a href="ipython_audio.html">Using Audio in IPython</a> (<a href="ipython_audio.ipynb">ipynb</a>)</li>
<li><a href="notebooks/python_basics.ipynb">Python Basics</a></li>
<li><a href="notebooks/numpy_basics.ipynb">NumPy, SciPy, Matplotlib Basics</a></li>
</ol>
......
......@@ -18,10 +18,10 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"1. [About musicinformationretrieval.com](about.html) ([ipynb](about.ipynb))\n",
"1. [About musicinformationretrieval.com](about.html)\n",
"1. [Python Basics](python_basics.html)\n",
"1. [Getting Good at IPython](notebooks/get_good_at_ipython.ipynb)\n",
"1. [Using Audio in IPython](ipython_audio.html) ([ipynb](ipython_audio.ipynb))\n",
"1. [Python Basics](notebooks/python_basics.ipynb)\n",
"1. [NumPy, SciPy, Matplotlib Basics](notebooks/numpy_basics.ipynb)"
]
},
......
{
"metadata": {
"name": "",
"signature": "sha256:f537fdc0dbf8d83f3394951c8baa336475d54276fd9dcd98866b405a221d79be"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Python Basics"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Why Python?"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Python is a general-purpose programming language that is popular and easy to use. For new programmers, it is a great choice as a first programming language. In fact, more and more university CS departments are centering their introductory courses around Python.\n",
"\n",
"For a summary of why I (SKT) moved from Matlab to Python, please read [this post](http://stevetjoa.com/305)."
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Tutorial"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"If you are new to Python, please follow [The Python Tutorial](https://docs.python.org/2/tutorial/index.html).\n",
"\n",
"For the purposes of this workshop, be sure you understand the following sections:\n",
"\n",
"- Section 3: An Informal Introduction to Python\n",
"- Section 4: More Control Flow Tools\n",
"- Section 5: Data Structures\n",
"\n",
"While the other sections are useful, you can learn them along the way."
]
}
],
"metadata": {}
}
]
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Python Basics"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Why Python?"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"[Python](https://python.org) is a general-purpose programming language that is popular and easy to use. For new programmers, it is a great choice as a first programming language. In fact, more and more university CS departments are centering their introductory courses around Python.\n",
"\n",
"For a summary of reasons to move from Matlab to Python, please read [this post](https://stevetjoa.com/305).\n",
"\n",
"This page on [Udacity](https://www.udacity.com/programming-languages/python) provides some more great reasons to use Python, along with resources for getting started."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Tutorial"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"If you are new to Python, please follow [The Python Tutorial](https://docs.python.org/2/tutorial/index.html).\n",
"\n",
"For the purposes of this workshop, be sure you understand the following sections:\n",
"\n",
"- Section 3: An Informal Introduction to Python\n",
"- Section 4: More Control Flow Tools\n",
"- Section 5: Data Structures\n",
"\n",
"While the other sections are useful, you can learn them along the way."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## More Learning Resources"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"- [Codecademy](http://www.codecademy.com/en/tracks/python)\n",
"- [learnpython.org](http://www.learnpython.org/)\n",
"- [The Hitchhiker's Guide to Python](http://docs.python-guide.org/en/latest/)"
]
}
],
"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.6"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment