# plotting을 위한 패키지 임포트import matplotlib.pyplot as plt # 막대 그래프(bar chart)# 영화 제목movies = ['Annie Hall', 'Ben-Hur', 'Casablanca', 'Gandhi', 'West Side Story']# 아카데미 시상식에서 받은 상의 갯수num_oscars = [5, 11, 3, 8, 10] plt.bar(movies, num_oscars)font_name = {'fontname':'Gulim'}dictionary 변수로 'fontname = 'Gulim'' 을 매번 입력하는 동작을 생략할 수 있다. plt.title('아카데미 수상작', font_name)plt.ylabel('수상 갯수', font_name)plt.show..