NeteaseMusicLyricDownloader/modules/utils/length.py

8 lines
218 B
Python
Raw Normal View History

2023-04-17 02:41:06 +08:00
"""一些有关计算长度的工具"""
def len_abs(content):
"""针对中文将一个汉字识别为2个长度而不是1个"""
return len(content) + (len(content.encode("utf-8")) - len(content)) // 2