python将UTF-8编码的字符串转换为字节数组
时间: 2023-05-15 11:06:21 浏览: 112
python字符串str和字节数组相互转化方法
可以使用encode()方法将UTF-8编码的字符串转换为字节数组,例如:
```
s = "你好,世界!"
b = s.encode('utf-8')
print(b)
```
输出结果为:
```
b'\xe4\xbd\xa0\xe5\xa5\xbd\xef\xbc\x8c\xe4\xb8\x96\xe7\x95\x8c\xef\xbc\x81'
```
阅读全文