설계 1. 대통령 기록관 사이트에서 연설문을 크롤링해온다 2. 크롤링해온 연설문 내용은 txt파일로 저장한다 3. txt파일은 [이름][년도].txt로 data_speech 폴더에 저장된다. 코드 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys import time from wordcloud import WordCloud import matplotlib.pyplot as plt from PIL import Image import numpy as np from collections import Counter from konlpy.tag ..