UnicodeEncodeError: 'ascii' 编解码器无法编码字符? [英] UnicodeEncodeError: 'ascii' codec can't encode character?

查看:65
本文介绍了UnicodeEncodeError: 'ascii' 编解码器无法编码字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过正则表达式传递大串随机 html 并且我的 Python 2.6 脚本对此感到窒息:

I'm trying to pass big strings of random html through regular expressions and my Python 2.6 script is choking on this:

UnicodeEncodeError: 'ascii' 编解码器无法编码字符

UnicodeEncodeError: 'ascii' codec can't encode character

我将它追溯到这个词末尾的商标上标:Protection™——我不需要捕获非 ascii 的东西,但它很麻烦,我希望将来会更多地遇到它.

I traced it back to a trademark superscript on the end of this word: Protection™ -- I do not need to capture the non-ascii stuff, but it is a nuisance and I expect to encounter it more in the future.

有处理非ascii字符的模块吗?或者,在 python 中处理/转义非 ascii 内容的最佳方法是什么?

Is there a module to process non-ascii characters? or, what is the best way to handle/escape non-ascii stuff in python?

谢谢!完全错误:

E
======================================================================
ERROR: test_untitled (__main__.Untitled)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\Python26\Test2.py", line 26, in test_untitled
    ofile.write(Test + '\n')
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2122' in position 1005: ordinal not in range(128)

完整脚本:

from selenium import selenium
import unittest, time, re, csv, logging

class Untitled(unittest.TestCase):
    def setUp(self):
        self.verificationErrors = []
        self.selenium = selenium("localhost", 4444, "*firefox", "http://www.BaseDomain.com/")
        self.selenium.start()
        self.selenium.set_timeout("90000")

    def test_untitled(self):
        sel = self.selenium
        spamReader = csv.reader(open('SubDomainList.csv', 'rb'))
        for row in spamReader:
            sel.open(row[0])
            time.sleep(10)
            Test = sel.get_text("//html/body/div/table/tbody/tr/td/form/div/table/tbody/tr[7]/td")
            Test = Test.replace(",","")
            Test = Test.replace("\n", "")
            ofile = open('TestOut.csv', 'ab')
            ofile.write(Test + '\n')
            ofile.close()

    def tearDown(self):
        self.selenium.stop()
        self.assertEqual([], self.verificationErrors)

if __name__ == "__main__":
    unittest.main()

推荐答案

完全重复你的其他问题 这里(虽然在这里你终于屈尊从一开始就向我们展示了代码,哇!-).答案仍然相同:而不是

Total repetition of your other question here (though here you finally deign to show us CODE from the start, wow!-). Answer is still identical: instead of

        ofile.write(Test + '\n')

        ofile.write(Test.encode('utf8') + '\n')

你为什么一直重复这个问题,顺便说一句?!

why do you keep repeating this Q, BTW?!

这篇关于UnicodeEncodeError: 'ascii' 编解码器无法编码字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆