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