re."예기된 문자열 또는 바이트와 유사한 개체"로 하위 오류가 발생 저는 이 오류에 대한 게시물을 여러 번 읽었지만 아직도 이해할 수 없습니다.내 기능을 반복하려고 할 때: def fix_Plan(location): letters_only = re.sub("[^a-zA-Z]", # Search for all non-letters " ", # Replace all non-letters with spaces location) # Column and row to search words = letters_only.lower().split() stops = set(stopwords.words("english")) meaningful_words = [w for w in words if not w in stops]..