
Ëexcel
文章平均质量分 85
mywpython
这个作者很懒,什么都没留下…
展开
-
pyhton读写excel表格 xls 与xlsx 的区别
第一、首先xls的读写直接上代码,如下:from xlutils.copy import copyimport requests, xlwt, xlrd上面是进行导包模块操作rexcel=xlrd.open_workbook('G:\kaisioem\suo_info.xls')打开一个已经存在的excel表格需要带上路径,不存在的excel表格会报错table=rexcel.she...原创 2018-11-20 14:53:54 · 2883 阅读 · 0 评论 -
多线程读写excel
from queue import Queueimport threadingimport timeclass test_q(object): def __init__(self): self.q1 = Queue() self.q2 = Queue() self.q3 = Queue() # 队列一种放入数据 de...原创 2018-11-19 17:46:11 · 4427 阅读 · 2 评论