[파이썬기초] 한글 깨짐 방지코드

2020. 4. 6. 13:29노트/Python : 프로그래밍

#한글깨짐 방지 코드 
import matplotlib
from matplotlib import font_manager, rc
import platform
if platform.system()=="Windows":
    font_name=font_manager.FontProperties(fname="c:/Windows/Fonts/malgun.ttf").get_name()
    rc('font', family=font_name)
matplotlib.rcParams['axes.unicode_minus']=False

import warnings
warnings.filterwarnings("ignore")