09 2020 档案

摘要:import xlrdapply_dic = []def get_excel(excel_path): with xlrd.open_workbook(excel_path) as workbook : name_sheets = workbook.sheet_names() #获取Excel的sh 阅读全文
posted @ 2020-09-24 10:13 fyangq 阅读(605) 评论(0) 推荐(0)
摘要:import redef check_chinese(words): regex_str = ".*?([\u4E00-\u9FA5])" match_obj = re.match(regex_str, words) if match_obj: a=match_obj.group(1) if a: 阅读全文
posted @ 2020-09-15 10:13 fyangq 阅读(876) 评论(0) 推荐(0)
摘要:import json tmp_site_type = [{'type': '比价', 'word': '折扣'}, {'type': '比价', 'word': '礼品'}, {'type': '比价', 'word': '特价'}] tmp_dict = dict() for l in tmp_ 阅读全文
posted @ 2020-09-11 10:37 fyangq 阅读(339) 评论(0) 推荐(0)