1 #! /usr/bin/python 2 3 import matplotlib.pyplot as plt 4 5 plt.plot([0,2,1,3]) 6 plt.ylabel('value') 7 plt.xlabel('plot test') 8 plt.show()
No comments:
Post a Comment