python将unicode转为str
时间: 2023-09-03 09:13:23 浏览: 84
python2 中 unicode 和 str 之间的转换及与python3 str 的区别
在 Python 中,Unicode 对象可以通过调用 `encode()` 方法转换为字符串对象。例如:
```python
unicode_str = u"你好"
string_str = unicode_str.encode("utf-8")
print(string_str) # 输出结果为: b'\xe4\xbd\xa0\xe5\xa5\xbd'
```
其中,`"utf-8"` 参数指定了编码格式,你也可以根据具体需求选择其他编码格式。
阅读全文