如何在Python 3中将字符串转换为字节?

要在Python 3中将字符串转换为字节,可以使用encode()string类中的函数。例如,

>>> s = u"HellΘ WΘrld"
>>> s.encode('utf-8')
'Hell\xce\x98 W\xce\x98rld'