A notebook

First, some code:


In [1]:
print('hello *world*')
2 * 3


hello *world*
Out[1]:
6

An image:


In [2]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
np.random.seed(2016)
plt.imshow(np.random.rand(4, 4, 3), interpolation='none')
plt.xticks([])
plt.yticks([])
plt.show()


Vendor:  Continuum Analytics, Inc.
Package: mkl
Message: trial mode expires in 30 days
"This is not part of the previous code cell's output, since it's not Python."