import matplotlib.pyplot as plt plt.plot([1, 2, 3,4,5], [5,10,15,20,25]) plt.xlabel("time") plt.ylabel("speed") plt.title("V and T") plt.show()