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
'개발자 모드 > 파이썬(python)' 카테고리의 다른 글
파이썬 숫자 맞추는 게임 코드 만들기 (0) | 2022.10.03 |
---|---|
파이썬 python tkinter matplotlib 예제 (0) | 2022.08.07 |
파이썬 python 메세지박스 tkinter 메세지박스 단독 생성 (0) | 2022.08.07 |
파이썬 python 메세지 박스 제목없이 Text만 표시 (0) | 2022.08.07 |
파이썬 python 독립 메세지 생성 방법 (0) | 2022.08.06 |