摘要:
一、Python操作MySQL数据库 准备:安装pymysql模块(python3),pip install pymysql 阅读全文
摘要:
Python操作excel需要使用xlrd(用来读excel)、xlwt(用来写excel)、xlutils(用来修改excel)三个模块,使用pip安装 1、读excel wb=xlrd.open_workbook('abc.xlsx')#打开excel,这个excel必须存在,不存在会报错 #获 阅读全文