[250702] 최종 프로젝트 22일차 - 워드 클라우드
import pandas as pdimport re# 불용어 리스트stopwords = { 'a', 'an', 'the', 'for', 'to', 'of', 'in', 'on', 'at', 'by', 'and', 'or', 'with', 'as', 'from', '-', '_', "mm", "cm", "inch", "kg", "g", "oz", "pcs", "pack", "lot", "set", "new", "free", "brand", "type", "item", "sale", "hot", "best", "great", "good", "original", "us", "au", "uk"}# 숫자 포함 단어 제거용 정규식 (ex: "5mm", "abc12", "2020model" 등 포함..