python2 unicode 变str
时间: 2023-11-16 14:13:31 浏览: 84
python将unicode转为str的方法
在 Python 2 中,Unicode 对象可以通过调用其 `encode()` 方法将其转换为字符串(`str` 类型),示例如下:
```python
unicode_str = u'你好'
str_obj = unicode_str.encode('utf-8')
print str_obj # 输出:你好
```
在上面的示例中,将 `unicode_str` 转换为 `str` 类型时,使用了 UTF-8 编码。你也可以使用其他编码方式进行转换。
阅读全文