ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 한글깨짐
    카테고리 없음 2022. 9. 22. 15:14

    import matplotlib
    import platform

    print(platform.system()) # 플랫폼 확인

    # Window
    if platform.system() == 'Windows':
        matplotlib.rc('font', family='Malgun Gothic')
    elif platform.system() == 'Darwin': # Mac
        matplotlib.rc('font', family='AppleGothic')
    else: #linux
        matplotlib.rc('font', family='NanumGothic')

Designed by Tistory.