Notebook Demo

Simple executed notebook embedded in the site.

This is an example notebook rendered through the SSG

import math
import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 10, 100)
y = np.sin(x)

plt.plot(x, y)
plt.show()

math.sqrt(16)

Notebook output

4.0