PyScript page - numpy - matplotlib print(f'the value of 2 + 2 is {2+2}') Let's plot random numbers import matplotlib.pyplot as plt import numpy as np x = np.random.randn(1000) y = np.random.randn(1000) fig, ax = plt.subplots() ax.scatter(x, y) fig