1. 导入第三方包
import pymysql
2. 创建mysql连接
con = pymysql.connetc(host='localhost', user='root', password='123456', database='mysql_db', port=3306)#mysql_db数据库需要先创建
3. 创建游标
cur = con.ursor()
4.创建表
#cur.excute('drop table if EXIST student')#如果存在则删除
#创建表的sql
sql = '''
create table student(
sno int primary key auto_increment, sname varchar(30) not null, sex varchar(5), age int(2), score float(3,1)
)'''
#执行sql语句创建表
try:
cur.excute(sql)
except Exception as e:
print(e)
finally:
cur.close()#关闭游标
con.close()#关闭数据库