赞
踩
- 将 Unicode 编码字符转化成其他编码的字符串,如 str.encode(‘gb2312’) 将 Unicode 编码字符转化成 gb2312 编码的字符。
- 这里的 str 是 Unicode string,如 ‘一’ 或 ‘\u4e00’。
- encode 默认 utf-8 码。
>>> help(str.encode)
Help on built-in function encode:
encode(encoding='utf-8', errors='strict') method of builtins.str instance
Encode the string using the codec registered for encoding.
encoding
The encoding in which to encode the string.
errors
The error handling scheme to use for encoding errors.
The default is 'strict' meaning that encoding errors raise a
UnicodeEncodeError. Other possible values are 'ignore', 'replace' and
'xmlcharrefreplace' as well as any other name registered with
codecs.register_error that can handle UnicodeEncodeErrors.
>>> str1='一' >>> str1.encode() b'\xe4\xb8\x80' >>> str1.encode('utf-16') b'\xff\xfe\x00N' >>> str1.encode('gb2312') b'\xd2\xbb' >>> str1.encode('gbk') b'\xd2\xbb' >>> str1.encode('ASCII') Traceback (most recent call last): File "<pyshell#86>", line 1, in <module> str1.encode('ASCII') UnicodeEncodeError: 'ascii' codec can't encode character '\u4e00' in position 0: ordinal not in range(128) >>> str1.encode('ASCII', 'ignore') #忽略不能编码的字符,结果中不包含不能编码的字符,且没有任何提示 b'' >>> str1.encode('ASCII', 'replace') #使用问号 ? 替换不能进行编码的字符 b'?'
- 将其他编码的 字符串 转化成 Unicode string,如 str.decode(‘utf-8’) 将 utf-8 字符串转化为 Unicode 编码。
- 这里的 str 是 decode 里对应的编码字符。
- decode 后的结果是认识的 Unicode string,如 ‘一’ 而不是 ‘\u4e00’。
>>> import chardet
>>> str2 = b'\xff\xfe\x00N'
>>> chardet.detect(str2)
{'encoding': 'UTF-16', 'confidence': 1.0, 'language': ''}
>>> chardet.detect(str2)['encoding'] #查阅是什么编码字符
'UTF-16'
>>> str2.decode('UTF-16')
'一'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。