日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python 代码实现模糊查询

發(fā)布時間:2025/3/20 python 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python 代码实现模糊查询 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

一、概述

最近在做一個django項目,里面有一個字典數(shù)據(jù)非常大,雖然已經(jīng)做了分頁處理。但是用戶想要找到指定的數(shù)據(jù),還得一頁頁翻,非常繁瑣。

字典的結構如下:

file_list = [{"type": "dir","size": "123","name": "access.log",},{"type": "dir","size": "123","name": "access.log.gz",},{"type": "dir","size": "123","name": "error.log",},{"type": "dir","size": "123","name": "access-auth.log",}, ]

當我輸入關鍵字access時,需要出現(xiàn)3個結果。

['access-auth.log', 'access.log', 'access.log.gz']

二、代碼實現(xiàn)

完整代碼如下:

test.py

''' 遇到問題沒人解答?小編創(chuàng)建了一個Python學習交流QQ群:778463939 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' import refile_list = [{"type": "dir","size": "123","name": "access.log",},{"type": "dir","size": "123","name": "access.log.gz",},{"type": "dir","size": "123","name": "error.log",},{"type": "dir","size": "123","name": "access-auth.log",}, ]def fuzzy_finder(key, data):"""模糊查找器:param key: 關鍵字:param data: 數(shù)據(jù):return: list"""# 結果列表suggestions = []# 非貪婪匹配,轉換 'djm' 為 'd.*?j.*?m'# pattern = '.*?'.join(key)pattern = '.*%s.*'%(key)# print("pattern",pattern)# 編譯正則表達式regex = re.compile(pattern)for item in data:# print("item",item['name'])# 檢查當前項是否與regex匹配。match = regex.search(item['name'])if match:# 如果匹配,就添加到列表中suggestions.append(item)return suggestions# 搜索關鍵字 keys = "access" result = fuzzy_finder(keys,file_list) print(result)

執(zhí)行輸出:

[{'type': 'dir', 'size': '123', 'name': 'access.log'}, {'type': 'dir', 'size': '123', 'name': 'access.log.gz'}, {'type': 'dir', 'size': '123', 'name': 'access-auth.log'}]

總結

以上是生活随笔為你收集整理的Python 代码实现模糊查询的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。