python连接写入mysql数据库(SQL语句中要用变量)

import pymysql

xm=“zhangsan”
nl=22
school=“ddkzx”
#打开数据库连接
db=pymysql.connect(host=“localhost”,port=3306,user=“test”,passwd=“1314179”,db=“zxx_kecheng”)

#创建一个游标对象cursor()
cursor=db.cursor()

#定义一个sql语句
sql=’’‘insert into ceshi (xm,nl,school)
values (%s,%s,%s)
‘’’

#预执行sql
cursor.execute(sql,[xm,nl,school])

#提交数据到数据库
db.commit()

#关闭数据库
db.close()

你可能感兴趣的:(MYSQL,mysql,数据库,sql)