#pip3 install pymysql
import pymysql
user=input(‘user>>: ‘).strip()
pwd=input(‘password>>: ‘).strip()
# 建立链接
conn=pymysql.connect(
host=‘198.168.43.122‘,
port=3306,
user=‘root‘,
password=‘123‘,
db=‘db9‘,
charset=‘utf8‘
)
# 拿到游标
cursor=conn.cursor()
# 执行sql语句
sql=‘select * from userinfo where user = "%s" and pwd="%s"‘ %(user,pwd)
rows=cursor.execute(sql)
cursor.close()
conn.close()
# 进行判断
if rows:
print(‘登录成功‘)
else:
print(‘登录失败‘)
相关文章
- 10-161.git使用入门之基本的更新提交操作
- 10-16matplotlib之pyplot模块——散点图(scatter():基本功能、参数)
- 10-16爬虫之jupyter的使用,requests模块,正则表达式,bs4
- 10-16qml: QtCharts模块的使用(基本配置)------<一>
- 10-16Maven的pom.xml文件结构之基本配置packaging和多模块聚合结构(微服务)
- 10-16前端框架之bootstrao基本使用
- 10-16python之定义参数模块argparse(一)基本使用
- 10-16【webpack】webpack之postcss-loader的基本使用---【巷子】
- 10-16【React 基础】之 React 基本介绍、jsx 规则、模块与组件
- 10-16QT之QTableWidget基本使用