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!