import os
import xlrd
import re
d="D:\\untitled2\\10月\\(原始)\\潘区\\2次\\"
file=[f for f in os.listdir(d)if os.path.isfile( os.path.join(d, f))]
pat=‘[^(](.*?)[^)]一品三笑‘
shop_name=[]
for i in range(len(file)):
shop_name.append(re.compile(pat).findall(file[i]))
print(shop_name)
xl=xlrd.open_workbook(d+file[0])
print(xl.sheet_names())
proc_excel
Posted 沧海一粒水
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了proc_excel相关的知识,希望对你有一定的参考价值。
以上是关于proc_excel的主要内容,如果未能解决你的问题,请参考以下文章