본문 바로가기

개발자 모드/파이썬(python)

파이썬 tkinter matplot 기초

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