mirror of
https://github.com/ada-dmitry/pypet_project.git
synced 2026-09-24 08:10:22 +00:00
8 lines
147 B
Python
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() |