#!/usr/bin/env python # coding: utf-8 # # Hello World! # This is _Hello World!_, my first iPython Notebook # In[3]: print("Hello World!") # Now let's try printing dynamic content like the current time. # In[4]: import time print("Hello World! It's", time.strftime("%A %B %e, %Y")) # Things we've learned in this Notebook # -- # * creating a new notebook # * basic user interface of a notebook # * printing a static string like _Hello World!_ # * debugging syntax errors # * printing a dymamic string with the current time # * a bit more about Markdown (see http://daringfireball.net/projects/markdown/syntax) # --- # This is a template from the [GettingStarted](GettingStarted.ipynb) notebook. # # From [The Art of Literary Text Analysis](https://github.com/sgsinclair/alta) by [Stéfan Sinclair](http://stefansinclair.name) & [Geoffrey Rockwell](http://geoffreyrockwell.com), [CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/) # # Created January 12, 2015