💻 14_matplotlib 💾 Ex04 #_*_ coding:utf-8 ''' Created on 2022. 10. 17. @author: admin ''' from matplotlib import font_manager import matplotlib import matplotlib.pyplot as plt font_location = 'c:/Windows/fonts/malgun.ttf' font_name = font_manager.FontProperties(fname=font_location).get_name() matplotlib.rc('font',family=font_name) x1 = [1,2,3,4] y1 = [3,7,6,4] x2 = [1,2,3,4] y2 = [4,6,8,5] plt.su..