python3 - FC online 개인 프로젝트👉 프로젝트 Github 바로가기result_list = []for sentence in comment_list: okt_token = okt.pos(sentence) # 한국어, 숫자, 영어만 남기기 result = [] for token, pos in okt_token: if re.match('^[a-zA-Z가-힣]+', token): result.append((token,pos)) # 결과 리스트에 저장 result_list.append(result)# 1차원 리스트로 변환(flatten)tokens_list = [item for sublist in result_li..