python/Matplotlib
pyplot_2
spring99
2021. 7. 19. 10:05
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.ylabel('some numbers')
plt.show()