Experiment in IPython (ephemeral, for us)
-Once you've got something working, copy the code into a `.py` file (permanent and reusable)
+Once you've got something working, export the code into a `.py` file (permanent and reusable)
```python
from imp import reload
''.join()
```
+You'll be doing this a lot, so define a couple of utility functions:
+
+```python
+cat = ''.join
+wcat = ' '.join
+```
+
+`cat` after the Unix command (_concatenate_ files), `wcat` for _word concatenate_.
+
</textarea>
<script src="http://gnab.github.io/remark/downloads/remark-0.6.0.min.js" type="text/javascript">
</script>