Hello world

(press space)

This is how you do slides with ipython notebooks!

Formatting is simple, with markdown

...your python love will help you...


In [1]:
a = "Hello"
b = "World"
print a,b + "!"


Hello World!

How cool to have live code

inside your live slideshow!?!?!

Just another one


In [2]:
# Please consider also that you can re-use 
# variables defined in older slides ;)
print type(a + b)


<type 'str'>

Now go and become an hero!

THE END