Learn practical skills, build real-world projects, and advance your career
import numpy as np
import matplotlib.pyplot as pp
x = np.array([[1,2],[3,1]])
pp.imshow(x)
<matplotlib.image.AxesImage at 0x118282a90>
Notebook Image