I wrote a simple python code:
import matplotlib.pyplot as plt x=[0,1,2,3,4,9] plt.figure() plt.plot(x)
A