Update sample code

This commit is contained in:
xenia 2024-01-06 19:34:01 +01:00
parent 60d813c804
commit 8b28ffe2aa

View File

@ -1,7 +1,5 @@
import matplotlib.pyplot as plt
def meow(x: int) -> None:
for _ in range(x):
print("meow", end="")
fig, ax = plt.subplots()
ax.plot([1, 2, 3, -3])
ax.set_xlabel("time")
ax.set_ylabel("swag")
plt.show()
meow(10)