最佳答案
TypeError: str & # 39; 不支持缓冲区接口 建议了两种将字符串转换为字节的可能方法:
b = bytes(mystring, 'utf-8')
b = mystring.encode('utf-8')
哪种方法比较 Python 化?