Add example headers
authorJon Speicher <jon.speicher@gmail.com>
Sat, 27 Jul 2013 19:27:45 +0000 (15:27 -0400)
committerW. Trevor King <wking@tremily.us>
Sat, 9 Nov 2013 18:27:51 +0000 (10:27 -0800)
python/sw_engineering/SoftwareEngineering.ipynb

index 74d261c015fd8600045f1a9c0d54e3972a17ac13..a50a53e431dcce586f61d550be17211bb17e19b8 100644 (file)
       "\n",
       "One approach to reducing this duplication is to *decompose* the function above into several separate functions, each with a single, small, well-defined responsibility (remember our list of good function criteria from the Intro session). This is often known as [refactoring](http://en.wikipedia.org/wiki/Code_refactoring). The goal is to rearrange code to make it easier to read, maintain, and reuse while preserving the existing functionality.\n",
       "\n",
-      "We are going to *extract* a new function from `count_wolverines`.\n",
+      "We are going to *extract* a new function from `count_wolverines`."
+     ]
+    },
+    {
+     "cell_type": "markdown",
+     "metadata": {},
+     "source": [
+      "## Exercise: Read animal sightings from a file\n",
       "\n",
       "Create a new function called `read_sightings_from_file`. The function should:\n",
       "\n",