python str转byte
时间: 2023-09-05 20:13:54 浏览: 68
Python3中内置类型bytes和str用法及byte和string之间各种编码转换 问题
字符串 str 可以通过 encode() 方法编码为字节流 bytes,例如:
```python
s = 'hello world'
b = s.encode()
print(b) # b'hello world'
```
相反,字节流 bytes 可以通过 decode() 方法解码为字符串 str,例如:
```python
b = b'hello world'
s = b.decode()
print(s) # 'hello world'
```
阅读全文