- numpy - matplotlib

Let's plot random numbers

Thanks to @1littlecoder I lov Pyscript strong>
import matplotlib.pyplot as plt import numpy as np x = np.random.randn(100) y = np.random.randn(100) fig, ax = plt.subplots() ax.scatter(x, y) fig