텍스트의 언어를 결정하는 방법은 무엇입니까? 나는 이것을 받고 싶습니다: Input text: "ру́сский язы́к" Output text: "Russian" Input text: "中文" Output text: "Chinese" Input text: "にほんご" Output text: "Japanese" Input text: "العَرَبِيَّة" Output text: "Arabic" 파이썬으로 어떻게 하나요?TextBlob. (사용되지 않음 - 대신 공식 Google Translate API 사용) NLTK 패키지가 필요하며 Google을 사용합니다. from textblob import TextBlob b = TextBlob("bonjour") b.detect_language() pip..