개발자 모드/파이썬(python)
파이썬 tkinter matplot 기초
인생은직구
2022. 8. 7. 11:48
728x90
import matplotlib.pyplot as plt
from pylab import show
x_value = [1, 2, 3, 4]
y_value = [5, 7, 6, 8]
plt.plot(x_value, y_value)
show()
728x90