Python之MySQL数据库增删改查操作_linux下如何使用python语言为mysql添加数据-CSDN博客

网站介绍:文章浏览阅读2.3w次,点赞26次,收藏190次。Python之MySQL数据库操作Python之连接数据库import pymysql# 获取连接对象conn,建立数据库的连接def get_conn(): conn = pymysql.connect(host='localhost',port=3306,user='root',passwd='root',db='test1') # db:表示数据库名称 return c_linux下如何使用python语言为mysql添加数据