python unicode函数
时间: 2023-07-28 17:49:39 浏览: 427
python所有函数大全
Python中的`unicode()`函数是将字符串转换为Unicode编码的函数。它接受一个字符串作为参数,并返回一个Unicode字符串。
例如,如果我们有一个ASCII编码的字符串,可以使用`unicode()`函数将其转换为Unicode编码:
```
s = 'Hello World'
u = unicode(s, 'utf-8')
```
在这个例子中,`unicode()`函数将字符串`s`从`utf-8`编码转换为Unicode字符串`u`。请注意,Python 3.x中已经没有`unicode()`函数,取而代之的是`str()`函数,用于表示字符串类型。
阅读全文