Files
2024-03-01 13:48:56 +03:00

8 lines
147 B
Python

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()