1 Star 0 Fork 0

Tao436/Python test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
产品分类名称获取.py 985 Bytes
一键复制 编辑 原始数据 按行查看 历史
Tao436 提交于 2021-09-15 17:30 . 20210915
import os
import xlrd
import xlwt
from xlutils.copy import copy
import re
root0 = os.getcwd()
libznames = os.listdir(root0+'/'+'待处理表格存放')
# print ('请输入标准号:')
# bzname = input()
# xlcreate = xlwt.Workbook(encoding='utf-8')
i=0
xlw = xlwt.Workbook()
shw = xlw.add_sheet('已处理', True)
for bzname in libznames:
bzname = re.sub('.xlsx', '', bzname)
print(bzname)
xl = root0 + '/'+'待处理表格存放'+'/' + bzname + '.xlsx'
xlopen = xlrd.open_workbook(xl)
sh= xlopen.sheet_by_name('table1')
nrows = sh.nrows
ncols = sh.ncols
lir0info = sh.row_values(0, 0, ncols)
for a in range(ncols):
if lir0info[a] == '分类名称':
liFL = sh.col_values(a)
flname = liFL[1]
shw.write(i,0,bzname)
shw.write(i,2,flname)
i=i+1
xlw.save(root0+'/'+ '产品分类名称.xls')
print ('产品分类获取完成')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ZT17625902436/python.git
git@gitee.com:ZT17625902436/python.git
ZT17625902436
python
Python test
master

搜索帮助