From 5c922f09ed68e7135f0fb8ee59ffa788433bce5b Mon Sep 17 00:00:00 2001 From: p6rwc4fxp <2277472491@qq.com> Date: Wed, 27 Apr 2022 17:55:17 +0800 Subject: [PATCH] Add query.py --- query.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 query.py diff --git a/query.py b/query.py new file mode 100644 index 0000000..fe92687 --- /dev/null +++ b/query.py @@ -0,0 +1,24 @@ +# -*- coding: gbk -*- +import csv +import re + +case = input("请输入:") +Start_date = input("要查询的开始时间:") +End_date = input("要查询的结束时间:") +keyword = input("关键字:") +with open('test.csv', 'r', encoding='utf-8') as f: + cs = list(csv.reader(f)) + for i in cs: + name = str(i[1]) + Bdate = str(i[2]) + Edate = str(i[3]) + Time = str(i[4]) + thought = str(i[5]) + if case == name or case == " ": + if Start_date == Bdate or Start_date == " ": + if End_date == Edate or End_date == " ": + s = re.findall(keyword, thought) + if keyword == " " : + print(name + " " + Bdate + Time + thought) + elif s!=[]: + print(name+" "+Bdate+Time+thought) \ No newline at end of file