In [1]:
print('qqcoisa')
In [3]:
%matplotlib inline
from matplotlib import *
from pylab import *
x = linspace(0, 5, 10)
y = x ** 2
pyplot.figure()
plot(x, y, 'r')
xlabel('x')
ylabel('y')
title('title')
show()
In [ ]: