fetchone()函数报’NoneType’ object is not subscriptable的错误今天有人向我请教一道python操作mysql的题,我也是差一点掉坑里去了。题是这样的:python操作数据库,实现用户的注册登陆功能。其中最主要的是数据库的存入和读取。
其中一段代码如下:
#查询与用户名对应的密码
sql = “select hash_password from user where username =’{}’”.format(self.username)
self.cursor.execute(sql)
#输出查询结果
print(self.cursor.fetchone()[0])
print(self.passwd)
#对比,查询结果与加密后的密码
if self.cursor.fetchone()[0] == self.passwd:
print(‘登录成功’)
else:
print(‘请输入正确的密码’)
乍一看没什么错,但是执行报错了,
e10adc3949ba59abbe56e057f20f883e
e10adc3949ba59abbe56e057f20f883e
rl.login()
File “xxxxxx”, line 314,in login
if self.cursor.fetchone()[0] == self.passwd:
TypeError: ‘NoneType’ object is not subscriptable
怎么回事呢?明明输出的两个密码是一样的,怎么对比出错呢,而且报错也很奇怪,NoneType说明对比的两个值中有一个是None,self.passwd排除,那只能说self.cursor.fetchone()[0]是None