python2中:
在python3中,所有的字符都被转化成了unicode
>>> s = "我用python" >>> s.encode("utf-8") b'\xe6\x88\x91\xe7\x94\xa8python' >>>