range4.py 81 B

12345
  1. from matplotlib import pyplot as plt
  2. plt.figure()
  3. plt.plot(range(4))
  4. plt.show()