#> Import libraries
import numpy as np
import matplotlib.pyplot as pltJust the first try of a notebook post.
x = np.linspace(-np.pi, np.pi, 101)
y = np.sin(x)plt.figure()
plt.plot(x,y)
plt.grid()
Basics
November 24, 2025
Just the first try of a notebook post.