7行代码实现的,废话不多说,直接上代码:
import os,re
def fuzzy_search(path):
word= input('请输入要查询的内容:')
for filename in os.listdir(path): #遍历指定文件夹
re_filename = re.findall('.\w+', str(filename)) #去除文件后缀名
if word in re_filename[0]:
print(re_filename[0])
以上这
本文实例为大家分享了python查询文件夹下excel的sheet的具体代码,供大家参考,具体内容如下
import os,sys,stat,xlrd
path=rF:\360Downloads
sheet = input(sheet name:)
def del_file(path):
ls = os.listdir(path)
for i in ls:
c_path = os.path.join(path, i)
if os.path.isdir(c_path):