How to handle Unicode (non-ASCII) characters in Python?(如何在 Python 中处理 Unicode(非 ASCII)字符?)
问题描述
我正在使用 Python 进行编程,我正在从网页通过 urllib2
库.问题是该页面可以为我提供非 ASCII 字符,例如 'ñ'
、'á'
等.就在 urllib2
code> 得到这个字符,它会引发一个异常,像这样:
I'm programming in Python and I'm obtaining information from a web page through the urllib2
library. The problem is that that page can provide me with non-ASCII characters, like 'ñ'
, 'á'
, etc. In the very moment urllib2
gets this character, it provokes an exception, like this:
File "c:Python25libhttplib.py", line 711, in send
self.sock.sendall(str)
File "<string>", line 1, in sendall:
UnicodeEncodeError: 'ascii' codec can't encode character u'xf1' in position 74: ordinal not in range(128)
我需要处理这些字符.我的意思是,我不想处理异常而是继续程序.有没有什么办法,例如(我不知道这是否是愚蠢的),使用另一个 codec 而不是 ASCII?因为我必须处理这些字符,将它们插入数据库等.
I need to handle those characters. I mean, I don't want to handle the exception but to continue the program. Is there any way to, for example (I don't know if this is something stupid), use another codec rather than the ASCII? Because I have to work with those characters, insert them in a database, etc.
推荐答案
您只需从套接字读取一组字节.如果你想要一个字符串,你必须解码它:
You just read a set of bytes from the socket. If you want a string you have to decode it:
yourstring = receivedbytes.decode("utf-8")
(用您使用的任何编码替换 utf-8
)
(substituting whatever encoding you're using for utf-8
)
然后你必须做相反的事情才能将它发回:
Then you have to do the reverse to send it back out:
outbytes = yourstring.encode("utf-8")
这篇关于如何在 Python 中处理 Unicode(非 ASCII)字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Python 中处理 Unicode(非 ASCII)字符?
基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 筛选NumPy数组 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01