摘要: import pymysql # 连接数据库 connect = pymysql.Connect( host='localhost', port=3306, user='root', passwd='root', db='python3', charset='utf8' ) # 获取游标 cursor = connect.cursor() # ... 阅读全文
posted @ 2018-01-02 17:38 安迪9468 阅读(125) 评论(0) 推荐(0) 编辑