首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python == 判断错误,UnicodeWarning

2013-07-04 
python 判断异常,,UnicodeWarning,求助 for row in csv.reader(open(rtestm.csv,rb),delimiter,

python == 判断异常,,UnicodeWarning,求助

 for row in csv.reader(open(r'testm.csv','rb'),delimiter=','):
        sql=""
        cursor = MySqlConn.cursor()
        cursor.execute(sql)  
        dbRet=cursor.fetchone()
 
        if not tuple(row)==dbRet:
           #其他操作


在ubuntu下if判断出现异常信息:
 UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal.

coding=utf8,请问各位大侠,应该怎么处理?
[解决办法]
py3
open(r'testm.csv','r', encoding='utf-8')

py2
不清楚

热点排行