Test notebook May 1, 2021 • 1 min read import numpy as np import matplotlib.pyplot as plt x = range(0,100,5) y = np.random.rand(len(x)) plt.plot(x,y) print("Test SUCCESS!") Test SUCCESS!