摘要: ```python import pymysql,xlwt def to_excel(table_name): host, user, passwd, db = '127.0.0.1', 'root', '123', 'mytable' conn = pymysql.connect(user=user, host=host, port=3306, passwd=passwd, db=db, cha 阅读全文
posted @ 2019-10-24 11:08 Lowell 阅读(211) 评论(0) 推荐(0) 编辑