토큰화
품사 태깅
불용어 제거
word =[] for tag in oktTag: if tag[1] not in stopPos: if tag[0] not in stopWord: word.append(tag[0]) print(word)