美文网首页Python
python关于解码的问题

python关于解码的问题

作者: 南方老F | 来源:发表于2017-09-25 18:02 被阅读0次

    decode:把一种编码转换成 unicode ---> 解码

    # byte -> str
    >>> a =b'hello'
    >>> a
    b'hello'
    >>> a.decode('utf-8')
    'hello'
    >>> 
    

    encode:把unicode转换成另一种编码 ---> 编码

    # str -> byte
    >>> a = 'hello'
    >>> a
    'hello'
    >>> a.encode('utf-8')
    b'hello'
    

    相关文章

      网友评论

        本文标题:python关于解码的问题

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