摘要: # -*- coding:UTF-8 -*- """ pymysql的简单使用: 创建表 插入数据 """ import os import pymysql import warnings warnings.filterwarnings("ignore") # 创建Product表,并插入数据 def Product(db, filename): count = 0 d... 阅读全文
posted @ 2018-10-25 18:25 一小白 阅读(250) 评论(0) 推荐(0) 编辑