我在Python中的编码有问题。我尝试了不同的方法,但似乎找不到找到将输出编码为UTF-8的最佳方法。
这就是我想要做的:
result = unicode(google.searchGoogle(param), "utf-8").encode("utf-8")
searchGoogle
传回的第一个Google结果param
。
这是我得到的错误:
exceptions.TypeError: decoding Unicode is not supported
有谁知道我该如何使Python用UTF-8编码输出以避免这种错误?
unicode()
只是在鬼混,试图了解正在发生的事情。非常感谢您:-)