使用python做登陆程序,在数据库中查找用户名和密码是否正确,用SQLite...
发布网友
发布时间:2022-04-30 00:51
我来回答
共1个回答
热心网友
时间:2022-04-18 09:24
import MySQLdb
conn=MySQLdb.connect(user='root',passwd='pwd',host='127.0.0.1',db='python_test')
cur=conn.cursor()
cur.execute("select * from users where uid='101' and login='ong'")
##uid 是你的密码 ;login是你的用户名
num=0
for data in cur.fetchall():
num=num+1
print data
if(num != 0):
print '登陆成功'
else:
print '用户名或密码未找到'
cur.close()
conn.commit()
conn.close()
如果还有其他问题可以再问