In [14]:
print("Hello world!")
Hello world!

Preved MEDVED

In [0]:
import 
In [14]:
 
In [13]:
import matplotlib.pyplot as plt
import numpy
%matplotlib inline
x=numpy.linspace(-6,6,100)
y=numpy.sin(x)
p=plt.figure()
ax=p.add_subplot(111)
ax.plot(x,y)
plt.show()
In [0]: