templates/python/main.py
2023-12-06 20:07:52 +01:00

8 lines
136 B
Python

import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1, 2, 3, -3])
ax.set_xlabel("time")
ax.set_ylabel("swag")
plt.show()