In [4]:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
See it's not that hard...
In [3]:
a = np.array([1,2,3,4,5])
print a*2
In [5]:
plt.plot(a)
Out[5]:
In [ ]: