
# simplePyPlot.py

import matplotlib.pyplot as plt

xs = [2, 4, 6, 8] 
ys = [3, 5, 7, 9] 
plt.plot(xs, ys)
plt.title('Simple plot')
plt.show()
