{ "metadata": { "name": "", "signature": "sha256:68e419b336c43b3a5f99d948a5148ad6a7da83f9796fdc45c9132c236a5a43bc" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "[Sebastian Raschka](http://sebastianraschka.com) \n", "\n", "- [Open in IPython nbviewer](http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/tutorials/awesome_things_ipynb?create=1) \n", "\n", "- [Link to this IPython notebook on Github](https://github.com/rasbt/python_reference/blob/master/tutorials/awesome_things_ipynb.ipynb) \n", "\n", "- [Link to the GitHub Repository python_reference](https://github.com/rasbt/python_reference/)" ] }, { "cell_type": "code", "collapsed": false, "input": [ "import time\n", "import platform\n", "print('Last updated: %s' %time.strftime('%d/%m/%Y'))\n", "print('Created using Python', platform.python_version())" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "Last updated: 27/06/2014\n", "Created using Python 3.4.1\n" ] } ], "prompt_number": 37 }, { "cell_type": "markdown", "metadata": {}, "source": [ "