We can get the specified font paths through Matplotlib 간단하게 구체적인 폰트 패스를 Matplotlib 를 활용하여 얻을 수 있습니다. # get the system font paths fpaths = matplotlib.font_manager.findSystemFonts() We then can utilize the font family or config to visualize the data through Matplotlib or other libraries 그리고나서 가져온 폰트 패밀리나 설정을 Matplotlib 나 다른 라이브러리를 통하여 데이타시각화에 활용할 수 있습니다. for i in fpaths: f = matplotlib.font_manage..