我想将我的项目以小写形式保存在 CSV 文件中。我试过这个:
iNomVin= map(unicode.strip, res.select('//div[@class="pro_detail_tit"]//div[@class="pro_titre"]/h1/text()').extract())
item ["nomVin"]= str(iNomVin).lower()
但它在 CSV 文件中给了我这个糟糕的结果:
[u'ch\xe2teau belair 2002']
如何在不丢失 UTF-8 编码的情况下将我的项目转换为小写?链接到我的程序。