python如何连接mysql数据库
1、导入模块
#导入模块 import pymysql登录后复制
2、打开数据库连接
#打开数据库连接 #注意:这里已经假定存在数据库testdb,db指定了连接的数据库,当然这个参数也可以没有 db = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='1234', db='testdb', charset='utf8')登录后复制
3、创建游标对象cursor
#使用cursor方法创建一个游标 cursor = db.cursor()登录后复制【感谢龙石为本站提供数据底座技术支撑http://www.longshidata.com/pages/government.html】