python字符串str与byte字节相等==判断

Posted zhangphil

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python字符串str与byte字节相等==判断相关的知识,希望对你有一定的参考价值。

python字符串str与byte字节相等==判断

if __name__ == '__main__':
    bb = b'zhangphil'  # byte类型数据
    print(bb)
    print(type(bb))

    ss = r'zhangphil'

    print(bb == ss)
    print(str(bb, encoding='utf-8') == ss)

    print(str(bb) == ss)
    print(bb == bytes(ss, encoding='utf-8'))

输出:

b'zhangphil'
<class 'bytes'>
False
True
False
True

以上是关于python字符串str与byte字节相等==判断的主要内容,如果未能解决你的问题,请参考以下文章

python字符串str与byte字节相等==判断

bytes与str

python str与bytes编码解码

Python3 中的 str 和 bytes

06-02字符串与bytes

06-02字符串与bytes