--高级查询在数据库中用得是最频繁的,也是应用最广泛的。 Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student; select count(dis
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])
以上这