파이썬에는 중국어 문자열의 길이가 들어있습니다 중국어 utf8 인코딩은 3자를 차지하므로 길이를 구하는 함수는 이렇게 쓰면 됩니다def str_len(str): try: row_l=len(str) utf8_l=len(str.encode('utf-8')) return (utf8_l-row_l)/2+row_l except: return None return None로그인 후 복사