如何在 Python 3 中将字符串转换为字节?
要在 Python 3 中将字符串转换为字节,可以使用字符串类的 encode() 函数。例如:
>>> s = u"HellΘ WΘrld" >>> s.encode('utf-8') 'Hell\xce\x98 W\xce\x98rld'
广告
要在 Python 3 中将字符串转换为字节,可以使用字符串类的 encode() 函数。例如:
>>> s = u"HellΘ WΘrld" >>> s.encode('utf-8') 'Hell\xce\x98 W\xce\x98rld'