摘要: import pymysql import re import linecache conn = pymysql.connect( host='localhost', port=3306, user='root', passwd='123456', db='test', charset='utf8' 阅读全文
posted @ 2019-08-02 10:31 orangeYY 阅读(738) 评论(0) 推荐(0) 编辑
摘要: import pymysql #连接数据库 conn = pymysql.connect( host='localhost', port=3306, user='root', passwd='123456', db='test', charset='utf8', ) cursor = conn.cu 阅读全文
posted @ 2019-08-02 08:45 orangeYY 阅读(9355) 评论(0) 推荐(0) 编辑