安装方法 :pip3 install PyMySQL
怎么连接数据库 使用 import PyMySQL (代用方式:pymysql.)
连接数据库
connection = pymysql.connect(host='localhost', mysql 安装路径
user='root',
passwd='root',
db='test', 数据库名称
port=3380, 端口号
charset='utf8'
)