python包含中文字串長度 一個中文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登入後複製