美文网首页
python处理中文繁体简体

python处理中文繁体简体

作者: lomidely | 来源:发表于2018-08-01 18:22 被阅读0次

    1. 判断

    python3可以 try: 编码为 big5hkscs,不异常就说明是 big5hkscs 里的繁体字

    line = '我们今天去吃饭了'
    l = '我們今天去吃飯了'
    print(line.encode('utf-8'))
    print(l.encode('utf-8'))
    try:
        print(l.encode('big5hkscs'))
        print(line.encode('big5hkscs'))
    except:
        print(111)
    
    结果

    2. 繁体简体转换

    langconv.py链接
    zh_wiki.py链接

    from model_traditional_conversion.langconv import *
    #python3
    # 转换繁体到简体
    line = Converter('zh-hans').convert(line)
    print(line)
    
    # 转换简体到繁体
     line = Converter('zh-hant').convert(line)
     print(line)
    

    相关文章

      网友评论

          本文标题:python处理中文繁体简体

          本文链接:https://www.haomeiwen.com/subject/tmwrvftx.html