Files
2019-11-17 12:44:16 +01:00

6 lines
81 B
Python

from matplotlib import pyplot as plt
plt.figure()
plt.plot(range(4))
plt.show()