import matplotlib.pyplot as plt from matplotlib import rc rc('font', family='Malgun Gothic') x = ['최강', '전설', '강호'] y = [1, 5, 4] plt.title('연간 영화관람 회수') plt.bar(x, y) plt.xlabel('이름', color = 'green') plt.ylabel('회수') plt.show() 출처: 예제 중심 파이썬 입문 궁금한 부분이 있으면 댓글 부탁드립니다^^