FISH FISH FISH


In [4]:
# h1
## h2
### h3
#### h4

In [5]:
import time
time.time()


Out[5]:
1485584149.313308

In [3]:
from PIL import Image
import matplotlib.pyplot as plt
import numpy as np

In [5]:
im = Image.open("./img/nbextensions-tab.png")

In [6]:
im_list = np.asarray(im)

In [7]:
plt.imshow(im_list)


Out[7]:
<matplotlib.image.AxesImage at 0x1154e3550>

In [8]:
plt.show()



In [ ]: