[PYTHON/MATPLOTLIB] close 함수 : 모든 윈도우 닫기
■ close 함수를 사용해 모든 윈도우를 닫는 방법을 보여준다. ▶ main.py
1 2 3 4 5 |
import matplotlib.pyplot as plt plt.close("all") |
▶ requirements.txt
1 2 3 4 5 6 7 8 9 10 11 12 13 |
contourpy==1.3.0 cycler==0.12.1 fonttools==4.54.1 kiwisolver==1.4.7 matplotlib==3.9.2 numpy==2.1.3 packaging==24.2 pillow==11.0.0 pyparsing==3.2.0 python-dateutil==2.9.0.post0 six==1.16.0 |
※ pip install matplotlib 명령을 실행했다.