In [1]:
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 30, 128)
plt.plot(x, np.sin(2 * x))
Out[1]:
Now let us go to Python intro
In [1]:
from IPython.core.display import HTML
def css_styling():
styles = open("./styles/custom.css", "r").read()
return HTML(styles)
css_styling()
Out[1]:
In [ ]: