This commit is contained in:
ada-dmitry
2024-03-01 13:48:56 +03:00
parent eba4646825
commit ba7482a544
3 changed files with 9 additions and 0 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
from matplotlib import pyplot as plt
squares = [1, 4, 9, 16, 25, 36, 49, 64]
fig, ax = plt.subplots()
ax.plot(squares, linewidth = 3)
plt.show()